diff options
author | Daniel Exner <dex@dragonslave.de> | 2007-09-11 16:28:36 -0400 |
---|---|---|
committer | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2007-09-11 16:28:36 -0400 |
commit | 03e6f489b32c0e7877bfe48f5619db725edf1fea (patch) | |
tree | 89d80fa4392b8d0010c8688ab1a00f5b00f8bc56 | |
parent | 2808b0a96a05ac8e826b5380eb2d30a10586707a (diff) |
pata_ali/alim15x3: override 80-wire cable detection for Toshiba S1800-814
Add Toshiba S1800-814 to whitelist for both pata_ali and alim15x3,
as it is correctly detected as 40-wire connected but this cable is
short enough to still use transfer modes higher than UDMA33.
Signed-off-by: Daniel Exner <dex@dragonslave.de>
Cc: Alan Cox <alan@lxorguk.ukuu.org.uk>
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
-rw-r--r-- | drivers/ata/pata_ali.c | 7 | ||||
-rw-r--r-- | drivers/ide/pci/alim15x3.c | 7 |
2 files changed, 14 insertions, 0 deletions
diff --git a/drivers/ata/pata_ali.c b/drivers/ata/pata_ali.c index 94e5edc12ac9..71bdc3b3189c 100644 --- a/drivers/ata/pata_ali.c +++ b/drivers/ata/pata_ali.c | |||
@@ -48,6 +48,13 @@ static struct dmi_system_id cable_dmi_table[] = { | |||
48 | DMI_MATCH(DMI_BOARD_VERSION, "OmniBook N32N-736"), | 48 | DMI_MATCH(DMI_BOARD_VERSION, "OmniBook N32N-736"), |
49 | }, | 49 | }, |
50 | }, | 50 | }, |
51 | { | ||
52 | .ident = "Toshiba Satelite S1800-814", | ||
53 | .matches = { | ||
54 | DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"), | ||
55 | DMI_MATCH(DMI_PRODUCT_NAME, "S1800-814"), | ||
56 | }, | ||
57 | }, | ||
51 | { } | 58 | { } |
52 | }; | 59 | }; |
53 | 60 | ||
diff --git a/drivers/ide/pci/alim15x3.c b/drivers/ide/pci/alim15x3.c index 025689de50e9..11ecb618007c 100644 --- a/drivers/ide/pci/alim15x3.c +++ b/drivers/ide/pci/alim15x3.c | |||
@@ -596,6 +596,13 @@ static struct dmi_system_id cable_dmi_table[] = { | |||
596 | DMI_MATCH(DMI_BOARD_VERSION, "OmniBook N32N-736"), | 596 | DMI_MATCH(DMI_BOARD_VERSION, "OmniBook N32N-736"), |
597 | }, | 597 | }, |
598 | }, | 598 | }, |
599 | { | ||
600 | .ident = "Toshiba Satellite S1800-814", | ||
601 | .matches = { | ||
602 | DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"), | ||
603 | DMI_MATCH(DMI_PRODUCT_NAME, "S1800-814"), | ||
604 | }, | ||
605 | }, | ||
599 | { } | 606 | { } |
600 | }; | 607 | }; |
601 | 608 | ||