diff options
author | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2008-04-27 09:38:29 -0400 |
---|---|---|
committer | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2008-04-27 09:38:29 -0400 |
commit | 207daeaabb5396995ebac63415fab71476b64ca3 (patch) | |
tree | c3e245104e64feaebf7434772fc49be0c1292f7d /drivers/ide/ide-probe.c | |
parent | e160124ff6868e53511b16412d2ea91f87936be0 (diff) |
ide: remove obsoleted "hdx=autotune" kernel parameter
* Remove obsoleted "hdx=autotune" kernel parameter
(we always auto-tune PIO if possible nowadays).
* Remove no longer needed ide_drive_t.autotune flag.
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Diffstat (limited to 'drivers/ide/ide-probe.c')
-rw-r--r-- | drivers/ide/ide-probe.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/ide/ide-probe.c b/drivers/ide/ide-probe.c index 99972fe3e9e4..ace826f52811 100644 --- a/drivers/ide/ide-probe.c +++ b/drivers/ide/ide-probe.c | |||
@@ -827,8 +827,7 @@ static void ide_port_tune_devices(ide_hwif_t *hwif) | |||
827 | ide_drive_t *drive = &hwif->drives[unit]; | 827 | ide_drive_t *drive = &hwif->drives[unit]; |
828 | 828 | ||
829 | if (drive->present) { | 829 | if (drive->present) { |
830 | if (drive->autotune) | 830 | ide_set_max_pio(drive); |
831 | ide_set_max_pio(drive); | ||
832 | 831 | ||
833 | drive->nice1 = 1; | 832 | drive->nice1 = 1; |
834 | 833 | ||
@@ -1325,7 +1324,6 @@ static void ide_port_init_devices(ide_hwif_t *hwif) | |||
1325 | drive->unmask = 1; | 1324 | drive->unmask = 1; |
1326 | if (hwif->host_flags & IDE_HFLAG_NO_UNMASK_IRQS) | 1325 | if (hwif->host_flags & IDE_HFLAG_NO_UNMASK_IRQS) |
1327 | drive->no_unmask = 1; | 1326 | drive->no_unmask = 1; |
1328 | drive->autotune = 1; | ||
1329 | } | 1327 | } |
1330 | 1328 | ||
1331 | if (port_ops && port_ops->port_init_devs) | 1329 | if (port_ops && port_ops->port_init_devs) |