From: Tejun Heo Date: Mon, 5 Feb 2007 12:47:13 +0000 (+0900) Subject: ide: fix drive side 80c cable check X-Git-Tag: v2.6.19.5~12 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ae6f125b80de14821a5e3316c9cc27adff9e733a;p=thirdparty%2Fkernel%2Fstable.git ide: fix drive side 80c cable check eighty_ninty_three() had word 93 validitity check but not the 80c bit test itself (bit 12). 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 Acked-by: Alan Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/ide/ide-iops.c b/drivers/ide/ide-iops.c index badde6331775a..65580559cee4a 100644 --- a/drivers/ide/ide-iops.c +++ b/drivers/ide/ide-iops.c @@ -607,6 +607,8 @@ u8 eighty_ninty_three (ide_drive_t *drive) if(!(drive->id->hw_config & 0x4000)) return 0; #endif /* CONFIG_IDEDMA_IVB */ + if (!(drive->id->hw_config & 0x2000)) + return 0; return 1; }