ide: always auto-tune PIO in legacy VLB host drivers

Signed-off-by: default avatarBartlomiej Zolnierkiewicz <bzolnier@gmail.com>
parent 73f1ad86
...@@ -202,7 +202,7 @@ static const struct ide_port_info ali14xx_port_info = { ...@@ -202,7 +202,7 @@ static const struct ide_port_info ali14xx_port_info = {
.name = DRV_NAME, .name = DRV_NAME,
.chipset = ide_ali14xx, .chipset = ide_ali14xx,
.port_ops = &ali14xx_port_ops, .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, .pio_mask = ATA_PIO4,
}; };
......
...@@ -101,8 +101,7 @@ static const struct ide_port_info dtc2278_port_info __initdata = { ...@@ -101,8 +101,7 @@ static const struct ide_port_info dtc2278_port_info __initdata = {
IDE_HFLAG_IO_32BIT | IDE_HFLAG_IO_32BIT |
/* disallow ->io_32bit changes */ /* disallow ->io_32bit changes */
IDE_HFLAG_NO_IO_32BIT | IDE_HFLAG_NO_IO_32BIT |
IDE_HFLAG_NO_DMA | IDE_HFLAG_NO_DMA,
IDE_HFLAG_NO_AUTOTUNE,
.pio_mask = ATA_PIO4, .pio_mask = ATA_PIO4,
}; };
......
...@@ -340,7 +340,6 @@ static const struct ide_port_info ht6560b_port_info __initdata = { ...@@ -340,7 +340,6 @@ static const struct ide_port_info ht6560b_port_info __initdata = {
.port_ops = &ht6560b_port_ops, .port_ops = &ht6560b_port_ops,
.host_flags = IDE_HFLAG_SERIALIZE | /* is this needed? */ .host_flags = IDE_HFLAG_SERIALIZE | /* is this needed? */
IDE_HFLAG_NO_DMA | IDE_HFLAG_NO_DMA |
IDE_HFLAG_NO_AUTOTUNE |
IDE_HFLAG_ABUSE_PREFETCH, IDE_HFLAG_ABUSE_PREFETCH,
.pio_mask = ATA_PIO4, .pio_mask = ATA_PIO4,
}; };
......
...@@ -12,8 +12,6 @@ ...@@ -12,8 +12,6 @@
* QDI QD6500/QD6580 EIDE controller fast support * QDI QD6500/QD6580 EIDE controller fast support
* *
* To activate controller support, use "ide0=qd65xx" * 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 = { ...@@ -324,8 +322,7 @@ static const struct ide_port_info qd65xx_port_info __initdata = {
.name = DRV_NAME, .name = DRV_NAME,
.chipset = ide_qd65xx, .chipset = ide_qd65xx,
.host_flags = IDE_HFLAG_IO_32BIT | .host_flags = IDE_HFLAG_IO_32BIT |
IDE_HFLAG_NO_DMA | IDE_HFLAG_NO_DMA,
IDE_HFLAG_NO_AUTOTUNE,
.pio_mask = ATA_PIO4, .pio_mask = ATA_PIO4,
}; };
......
...@@ -130,7 +130,7 @@ static const struct ide_port_info umc8672_port_info __initdata = { ...@@ -130,7 +130,7 @@ static const struct ide_port_info umc8672_port_info __initdata = {
.name = DRV_NAME, .name = DRV_NAME,
.chipset = ide_umc8672, .chipset = ide_umc8672,
.port_ops = &umc8672_port_ops, .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, .pio_mask = ATA_PIO4,
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment