diff options
Diffstat (limited to 'drivers/ide/ide-xfer-mode.c')
-rw-r--r-- | drivers/ide/ide-xfer-mode.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/ide/ide-xfer-mode.c b/drivers/ide/ide-xfer-mode.c index 0b47ca139079..46d203ce60cc 100644 --- a/drivers/ide/ide-xfer-mode.c +++ b/drivers/ide/ide-xfer-mode.c | |||
@@ -109,6 +109,12 @@ EXPORT_SYMBOL_GPL(ide_get_best_pio_mode); | |||
109 | 109 | ||
110 | int ide_pio_need_iordy(ide_drive_t *drive, const u8 pio) | 110 | int ide_pio_need_iordy(ide_drive_t *drive, const u8 pio) |
111 | { | 111 | { |
112 | /* | ||
113 | * IORDY may lead to controller lock up on certain controllers | ||
114 | * if the port is not occupied. | ||
115 | */ | ||
116 | if (pio == 0 && (drive->hwif->port_flags & IDE_PFLAG_PROBING)) | ||
117 | return 0; | ||
112 | return ata_id_pio_need_iordy(drive->id, pio); | 118 | return ata_id_pio_need_iordy(drive->id, pio); |
113 | } | 119 | } |
114 | EXPORT_SYMBOL_GPL(ide_pio_need_iordy); | 120 | EXPORT_SYMBOL_GPL(ide_pio_need_iordy); |