diff options
Diffstat (limited to 'drivers/ide/pci/slc90e66.c')
-rw-r--r-- | drivers/ide/pci/slc90e66.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/drivers/ide/pci/slc90e66.c b/drivers/ide/pci/slc90e66.c index cc9353565070..214d396fc31f 100644 --- a/drivers/ide/pci/slc90e66.c +++ b/drivers/ide/pci/slc90e66.c | |||
@@ -95,9 +95,8 @@ static void slc90e66_tune_pio (ide_drive_t *drive, u8 pio) | |||
95 | spin_unlock_irqrestore(&ide_lock, flags); | 95 | spin_unlock_irqrestore(&ide_lock, flags); |
96 | } | 96 | } |
97 | 97 | ||
98 | static void slc90e66_tune_drive (ide_drive_t *drive, u8 pio) | 98 | static void slc90e66_set_pio_mode(ide_drive_t *drive, const u8 pio) |
99 | { | 99 | { |
100 | pio = ide_get_best_pio_mode(drive, pio, 4); | ||
101 | slc90e66_tune_pio(drive, pio); | 100 | slc90e66_tune_pio(drive, pio); |
102 | (void) ide_config_drive_speed(drive, XFER_PIO_0 + pio); | 101 | (void) ide_config_drive_speed(drive, XFER_PIO_0 + pio); |
103 | } | 102 | } |
@@ -166,7 +165,7 @@ static int slc90e66_config_drive_xfer_rate (ide_drive_t *drive) | |||
166 | return 0; | 165 | return 0; |
167 | 166 | ||
168 | if (ide_use_fast_pio(drive)) | 167 | if (ide_use_fast_pio(drive)) |
169 | slc90e66_tune_drive(drive, 255); | 168 | ide_set_max_pio(drive); |
170 | 169 | ||
171 | return -1; | 170 | return -1; |
172 | } | 171 | } |
@@ -182,7 +181,7 @@ static void __devinit init_hwif_slc90e66 (ide_hwif_t *hwif) | |||
182 | hwif->irq = hwif->channel ? 15 : 14; | 181 | hwif->irq = hwif->channel ? 15 : 14; |
183 | 182 | ||
184 | hwif->speedproc = &slc90e66_tune_chipset; | 183 | hwif->speedproc = &slc90e66_tune_chipset; |
185 | hwif->tuneproc = &slc90e66_tune_drive; | 184 | hwif->set_pio_mode = &slc90e66_set_pio_mode; |
186 | 185 | ||
187 | pci_read_config_byte(hwif->pci_dev, 0x47, ®47); | 186 | pci_read_config_byte(hwif->pci_dev, 0x47, ®47); |
188 | 187 | ||