diff options
author | Jesse Barnes <jbarnes@virtuousgeek.org> | 2005-12-17 09:27:50 -0800 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2006-01-09 12:13:21 -0800 |
commit | 19272684b8e2fff39941e4c044d26ad349dd1a69 (patch) | |
tree | b855783d002489220a313e1ceb9da7b24a3c9af2 /arch | |
parent | 54c762fe62d9ff0982f38e80cbec9c59104311e9 (diff) | |
download | linux-stable-19272684b8e2fff39941e4c044d26ad349dd1a69.tar.gz linux-stable-19272684b8e2fff39941e4c044d26ad349dd1a69.tar.bz2 linux-stable-19272684b8e2fff39941e4c044d26ad349dd1a69.zip |
[PATCH] PCI: update Toshiba ohci quirk DMI table
I upgraded my Toshiba Satellite BIOS recently to see if it would fix an
ACPI related problem I have
(http://bugzilla.kernel.org/show_bug.cgi?id=5727). Unfortunately, it
didn't, and moreover, Toshiba chose to change the system version in the
DMI table with the update, causing the OHCI1394 related quirk to break.
This patch updates the DMI table for the quirk to include Toshiba's new
version name for this machine; I've tested it and it seems to work fine.
Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/i386/pci/fixup.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/arch/i386/pci/fixup.c b/arch/i386/pci/fixup.c index eeb1b1f2d548..65f67070db64 100644 --- a/arch/i386/pci/fixup.c +++ b/arch/i386/pci/fixup.c @@ -413,6 +413,13 @@ static struct dmi_system_id __devinitdata toshiba_ohci1394_dmi_table[] = { DMI_MATCH(DMI_PRODUCT_VERSION, "PSM4"), }, }, + { + .ident = "Toshiba A40 based laptop", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"), + DMI_MATCH(DMI_PRODUCT_VERSION, "PSA40U"), + }, + }, { } }; |