The 80c wire bit is bit 13, not 14. This increases the chance of incorrect wire detection especially because host side cable detection is often unreliable and we sometimes soley depend on drive side cable detection. Fix it. Signed-off-by: Tejun Heo <htejun@xxxxxxxxx> --- Please consider for -stable. drivers/ide/ide-iops.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Index: work/drivers/ide/ide-iops.c =================================================================== --- work.orig/drivers/ide/ide-iops.c +++ work/drivers/ide/ide-iops.c @@ -604,7 +604,7 @@ u8 eighty_ninty_three (ide_drive_t *driv if (!(drive->id->hw_config & 0x6000)) return 0; #ifndef CONFIG_IDEDMA_IVB - if(!(drive->id->hw_config & 0x4000)) + if (!(drive->id->hw_config & 0x2000)) return 0; #endif /* CONFIG_IDEDMA_IVB */ return 1; - To unsubscribe from this list: send the line "unsubscribe linux-ide" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html