diff options
author | Tejun Heo <htejun@gmail.com> | 2007-02-05 21:47:13 +0900 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2007-02-23 16:24:25 -0800 |
commit | ae6f125b80de14821a5e3316c9cc27adff9e733a (patch) | |
tree | 1e51d06849a2f7891e0f07f036461197fc564339 | |
parent | f6a2637fe05e2ad8ff8f83e346e816b62af81252 (diff) | |
download | lwn-ae6f125b80de14821a5e3316c9cc27adff9e733a.tar.gz lwn-ae6f125b80de14821a5e3316c9cc27adff9e733a.zip |
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 <htejun@gmail.com>
Acked-by: Alan <alan@lxorguk.ukuu.org.uk>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
-rw-r--r-- | drivers/ide/ide-iops.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/ide/ide-iops.c b/drivers/ide/ide-iops.c index badde6331775..65580559cee4 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; } |