diff options
author | Alan Cox <alan@lxorguk.ukuu.org.uk> | 2008-01-14 01:06:40 -0800 |
---|---|---|
committer | Jeff Garzik <jeff@garzik.org> | 2008-01-15 16:35:21 -0500 |
commit | 121a09e590d54be840289c6feac840453aa999d9 (patch) | |
tree | 3787fdb9c29811d161049b669209b99dedf79f40 | |
parent | 0f7577434bcdf99456757b44d8911dc6e51c3178 (diff) | |
download | linux-3.10-121a09e590d54be840289c6feac840453aa999d9.tar.gz linux-3.10-121a09e590d54be840289c6feac840453aa999d9.tar.bz2 linux-3.10-121a09e590d54be840289c6feac840453aa999d9.zip |
libata: correct handling of TSS DVD
Devices that misreport the validity bit for word 93 look like SATA. If
they are on the blacklist then we must not test for SATA but assume 40 wire
in the 40 wire case (The TSSCorp reports 80 wire on SATA it seems!)
Signed-off-by: Alan Cox <alan@redhat.com>
Cc: Tejun Heo <htejun@gmail.com>
Cc: Jeff Garzik <jeff@garzik.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
-rw-r--r-- | include/linux/ata.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/linux/ata.h b/include/linux/ata.h index 72ab80801ef..e672e80202a 100644 --- a/include/linux/ata.h +++ b/include/linux/ata.h @@ -554,8 +554,6 @@ static inline int ata_drive_40wire(const u16 *dev_id) static inline int ata_drive_40wire_relaxed(const u16 *dev_id) { - if (ata_id_is_sata(dev_id)) - return 0; /* SATA */ if ((dev_id[93] & 0x2000) == 0x2000) return 0; /* 80 wire */ return 1; |