diff options
author | Alan Cox <alan@redhat.com> | 2008-12-05 22:41:52 +0300 |
---|---|---|
committer | Jeff Garzik <jgarzik@redhat.com> | 2008-12-09 08:44:11 +0300 |
commit | e33ba2c6c668a2be8f192b383186ee7cbb371da0 (patch) | |
tree | 275d4c1ad15bd0f53019cb12b97155b43b2d7f72 | |
parent | 9ac6212660fa3d8d0d21e782a22b956a6bc78a43 (diff) | |
download | linux-e33ba2c6c668a2be8f192b383186ee7cbb371da0.tar.xz |
pata_sis: Remove bogus cable match
Some systems report SIS 5513 as both vendor/id and subvendor/id
string. In that case we can't distinguish the system by the id
svid/sdid and in fact the entry here breaks some boxes. At some
point we need to find another way to detect the Targa Visionary 1000,
until then this trades a hang for some users with lower performance
for others.
Closes: #12092
Signed-off-by: Alan Cox <alan@redhat.com>
Signed-off-by: Jeff Garzik <jgarzik@redhat.com>
-rw-r--r-- | drivers/ata/pata_sis.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/ata/pata_sis.c b/drivers/ata/pata_sis.c index d34236611752..e4be55e047f6 100644 --- a/drivers/ata/pata_sis.c +++ b/drivers/ata/pata_sis.c @@ -56,7 +56,6 @@ static const struct sis_laptop sis_laptop[] = { { 0x5513, 0x1043, 0x1107 }, /* ASUS A6K */ { 0x5513, 0x1734, 0x105F }, /* FSC Amilo A1630 */ { 0x5513, 0x1071, 0x8640 }, /* EasyNote K5305 */ - { 0x5513, 0x1039, 0x5513 }, /* Targa Visionary 1000 */ /* end marker */ { 0, } }; |