Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linux-davinci
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
linux
linux-davinci
Commits
0d28ec7f
Commit
0d28ec7f
authored
Apr 27, 2008
by
Bartlomiej Zolnierkiewicz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ide: always auto-tune PIO in legacy VLB host drivers
Signed-off-by:
Bartlomiej Zolnierkiewicz
<
bzolnier@gmail.com
>
parent
73f1ad86
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
4 additions
and
9 deletions
+4
-9
drivers/ide/legacy/ali14xx.c
drivers/ide/legacy/ali14xx.c
+1
-1
drivers/ide/legacy/dtc2278.c
drivers/ide/legacy/dtc2278.c
+1
-2
drivers/ide/legacy/ht6560b.c
drivers/ide/legacy/ht6560b.c
+0
-1
drivers/ide/legacy/qd65xx.c
drivers/ide/legacy/qd65xx.c
+1
-4
drivers/ide/legacy/umc8672.c
drivers/ide/legacy/umc8672.c
+1
-1
No files found.
drivers/ide/legacy/ali14xx.c
View file @
0d28ec7f
...
...
@@ -202,7 +202,7 @@ static const struct ide_port_info ali14xx_port_info = {
.
name
=
DRV_NAME
,
.
chipset
=
ide_ali14xx
,
.
port_ops
=
&
ali14xx_port_ops
,
.
host_flags
=
IDE_HFLAG_NO_DMA
|
IDE_HFLAG_NO_AUTOTUNE
,
.
host_flags
=
IDE_HFLAG_NO_DMA
,
.
pio_mask
=
ATA_PIO4
,
};
...
...
drivers/ide/legacy/dtc2278.c
View file @
0d28ec7f
...
...
@@ -101,8 +101,7 @@ static const struct ide_port_info dtc2278_port_info __initdata = {
IDE_HFLAG_IO_32BIT
|
/* disallow ->io_32bit changes */
IDE_HFLAG_NO_IO_32BIT
|
IDE_HFLAG_NO_DMA
|
IDE_HFLAG_NO_AUTOTUNE
,
IDE_HFLAG_NO_DMA
,
.
pio_mask
=
ATA_PIO4
,
};
...
...
drivers/ide/legacy/ht6560b.c
View file @
0d28ec7f
...
...
@@ -340,7 +340,6 @@ static const struct ide_port_info ht6560b_port_info __initdata = {
.
port_ops
=
&
ht6560b_port_ops
,
.
host_flags
=
IDE_HFLAG_SERIALIZE
|
/* is this needed? */
IDE_HFLAG_NO_DMA
|
IDE_HFLAG_NO_AUTOTUNE
|
IDE_HFLAG_ABUSE_PREFETCH
,
.
pio_mask
=
ATA_PIO4
,
};
...
...
drivers/ide/legacy/qd65xx.c
View file @
0d28ec7f
...
...
@@ -12,8 +12,6 @@
* QDI QD6500/QD6580 EIDE controller fast support
*
* To activate controller support, use "ide0=qd65xx"
* To enable tuning, use "hda=autotune hdb=autotune"
* To enable 2nd channel tuning (qd6580 only), use "hdc=autotune hdd=autotune"
*/
/*
...
...
@@ -324,8 +322,7 @@ static const struct ide_port_info qd65xx_port_info __initdata = {
.
name
=
DRV_NAME
,
.
chipset
=
ide_qd65xx
,
.
host_flags
=
IDE_HFLAG_IO_32BIT
|
IDE_HFLAG_NO_DMA
|
IDE_HFLAG_NO_AUTOTUNE
,
IDE_HFLAG_NO_DMA
,
.
pio_mask
=
ATA_PIO4
,
};
...
...
drivers/ide/legacy/umc8672.c
View file @
0d28ec7f
...
...
@@ -130,7 +130,7 @@ static const struct ide_port_info umc8672_port_info __initdata = {
.
name
=
DRV_NAME
,
.
chipset
=
ide_umc8672
,
.
port_ops
=
&
umc8672_port_ops
,
.
host_flags
=
IDE_HFLAG_NO_DMA
|
IDE_HFLAG_NO_AUTOTUNE
,
.
host_flags
=
IDE_HFLAG_NO_DMA
,
.
pio_mask
=
ATA_PIO4
,
};
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment