aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSeth Forshee <seth.forshee@canonical.com>2011-10-06 16:35:13 -0400
committerHerton Ronaldo Krzesinski <herton.krzesinski@canonical.com>2011-10-17 13:33:26 -0400
commit4cb1ba94383a1ffb25e4e7d452184beb8066c89e (patch)
tree8ad043f02390306d1c116c8bcd555cef631ef44f
parente55043ccdaef63aca2dcb2a6a00b0d51773ac7ac (diff)
UBUNTU: SAUCE: acer-wmi: Add wireless quirk for Lenovo 3000 N200
This quirk fixes the wlan rfkill status on this machine. Without it, wlan is permanently soft blocked whenever acer-wmi is loaded. BugLink: https://bugs.launchpad.net/bugs/857297 Acked-by: Stefan Bader <stefan.bader@canonical.com> Acked-by: Leann Ogasawara <leann.ogasawara@canonical.com> Acked-by: Tim Gardner <tim.gardner@canonical.com> Signed-off-by: Seth Forshee <seth.forshee@canonical.com>
-rw-r--r--drivers/platform/x86/acer-wmi.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/drivers/platform/x86/acer-wmi.c b/drivers/platform/x86/acer-wmi.c
index db44dac6299..5957f62827f 100644
--- a/drivers/platform/x86/acer-wmi.c
+++ b/drivers/platform/x86/acer-wmi.c
@@ -451,6 +451,15 @@ static struct dmi_system_id acer_quirks[] = {
451 }, 451 },
452 .driver_data = &quirk_medion_md_98300, 452 .driver_data = &quirk_medion_md_98300,
453 }, 453 },
454 {
455 .callback = dmi_matched,
456 .ident = "Lenovo 3000 N200",
457 .matches = {
458 DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
459 DMI_MATCH(DMI_PRODUCT_NAME, "0687A31"),
460 },
461 .driver_data = &quirk_fujitsu_amilo_li_1718,
462 },
454 {} 463 {}
455}; 464};
456 465