aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/ide/legacy/qd65xx.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/ide/legacy/qd65xx.c')
-rw-r--r--drivers/ide/legacy/qd65xx.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/ide/legacy/qd65xx.c b/drivers/ide/legacy/qd65xx.c
index ef4e84053a81..6d7f548655e4 100644
--- a/drivers/ide/legacy/qd65xx.c
+++ b/drivers/ide/legacy/qd65xx.c
@@ -195,10 +195,10 @@ static void qd6500_set_pio_mode(ide_drive_t *drive, const u8 pio)
195 * FIXME: use "pio" value 195 * FIXME: use "pio" value
196 */ 196 */
197 if (!qd_find_disk_type(drive, &active_time, &recovery_time) && 197 if (!qd_find_disk_type(drive, &active_time, &recovery_time) &&
198 drive->driveid->tPIO && (id[ATA_ID_FIELD_VALID] & 2) && 198 (id[ATA_ID_OLD_PIO_MODES] & 0xff) && (id[ATA_ID_FIELD_VALID] & 2) &&
199 id[ATA_ID_EIDE_PIO] >= 240) { 199 id[ATA_ID_EIDE_PIO] >= 240) {
200 printk(KERN_INFO "%s: PIO mode%d\n", drive->name, 200 printk(KERN_INFO "%s: PIO mode%d\n", drive->name,
201 drive->driveid->tPIO); 201 id[ATA_ID_OLD_PIO_MODES] & 0xff);
202 active_time = 110; 202 active_time = 110;
203 recovery_time = drive->id[ATA_ID_EIDE_PIO] - 120; 203 recovery_time = drive->id[ATA_ID_EIDE_PIO] - 120;
204 } 204 }