aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/usb
diff options
context:
space:
mode:
authorAnisse Astier <anisse@astier.eu>2011-07-05 10:38:46 -0400
committerHerton Ronaldo Krzesinski <herton.krzesinski@canonical.com>2011-10-17 13:33:03 -0400
commit2d4e57380a717fd511ce1bf9d9f501960da2414f (patch)
tree4f881830331dfaf0112287dd4fb4621c0b6d22b6 /drivers/usb
parent059a229d2d0cbcdd84be5fe1c55cce6ed2de9b60 (diff)
ehci: add pci quirk for Ordissimo and RM Slate 100 too
BugLink: http://bugs.launchpad.net/bugs/868628 commit 0c42a4e84502533ec40544324debe2a62836ae11 upstream. Add another variant of the Pegatron tablet used by Ordissimo, and apparently RM Slate 100, to the list of models that should skip the negociation for the handoff of the EHCI controller. Signed-off-by: Anisse Astier <anisse@astier.eu> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/usb')
-rw-r--r--drivers/usb/host/pci-quirks.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/drivers/usb/host/pci-quirks.c b/drivers/usb/host/pci-quirks.c
index d8ade499ce3..f4d1b691e6e 100644
--- a/drivers/usb/host/pci-quirks.c
+++ b/drivers/usb/host/pci-quirks.c
@@ -543,6 +543,13 @@ static const struct dmi_system_id __initconst ehci_dmi_nohandoff_table[] = {
543 DMI_MATCH(DMI_BIOS_VERSION, "Lucid-CE-133"), 543 DMI_MATCH(DMI_BIOS_VERSION, "Lucid-CE-133"),
544 }, 544 },
545 }, 545 },
546 {
547 /* Pegatron Lucid (Ordissimo AIRIS) */
548 .matches = {
549 DMI_MATCH(DMI_BOARD_NAME, "M11JB"),
550 DMI_MATCH(DMI_BIOS_VERSION, "Lucid-GE-133"),
551 },
552 },
546 { } 553 { }
547}; 554};
548 555