From jbarnes@virtuousgeek.org Sat Dec 17 14:41:57 2005 From: Jesse Barnes To: gregkh@suse.de Subject: PCI: update Toshiba ohci quirk DMI table Date: Sat, 17 Dec 2005 09:27:50 -0800 Message-Id: <200512170927.50760.jbarnes@virtuousgeek.org> 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 Signed-off-by: Greg Kroah-Hartman --- arch/i386/pci/fixup.c | 7 +++++++ 1 file changed, 7 insertions(+) --- gregkh-2.6.orig/arch/i386/pci/fixup.c +++ gregkh-2.6/arch/i386/pci/fixup.c @@ -420,6 +420,13 @@ static struct dmi_system_id __devinitdat DMI_MATCH(DMI_PRODUCT_VERSION, "PSA40U"), }, }, + { + .ident = "Toshiba A40 based laptop", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"), + DMI_MATCH(DMI_PRODUCT_VERSION, "PSA40U"), + }, + }, { } };