diff options
author | Anisse Astier <anisse@astier.eu> | 2012-10-09 12:22:36 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-10-31 09:51:35 -0700 |
commit | 3f89e7a23865b5a4de6175097dc9e6162d875cff (patch) | |
tree | 5357d6c7236fb4c6a0519c90fc9ca65970434d4d | |
parent | e17ce2ec38fd766e8f9707701e47f4332d8bb630 (diff) | |
download | kernel_samsung_crespo-3f89e7a23865b5a4de6175097dc9e6162d875cff.zip kernel_samsung_crespo-3f89e7a23865b5a4de6175097dc9e6162d875cff.tar.gz kernel_samsung_crespo-3f89e7a23865b5a4de6175097dc9e6162d875cff.tar.bz2 |
ehci: fix Lucid nohandoff pci quirk to be more generic with BIOS versions
commit c323dc023b9501e5d09582ec7efd1d40a9001d99 upstream.
BIOS vendors keep changing the BIOS versions. Only match the beginning
of the string to match all Lucid tablets with board name M11JB.
Signed-off-by: Anisse Astier <anisse@astier.eu>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/usb/host/pci-quirks.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/host/pci-quirks.c b/drivers/usb/host/pci-quirks.c index 3b82c81..2327dab 100644 --- a/drivers/usb/host/pci-quirks.c +++ b/drivers/usb/host/pci-quirks.c @@ -543,7 +543,7 @@ static const struct dmi_system_id __devinitconst ehci_dmi_nohandoff_table[] = { /* Pegatron Lucid (Ordissimo AIRIS) */ .matches = { DMI_MATCH(DMI_BOARD_NAME, "M11JB"), - DMI_MATCH(DMI_BIOS_VERSION, "Lucid-GE-133"), + DMI_MATCH(DMI_BIOS_VERSION, "Lucid-"), }, }, { } |