aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/platform
diff options
context:
space:
mode:
authorSeth Forshee <seth.forshee@canonical.com>2011-10-06 16:01:55 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2012-03-19 11:57:44 -0400
commitbbc1505482e5bb16fa956e23f22dae6cd25172e6 (patch)
tree7ae1a54112b08271ae2638c8a47d95f271864835 /drivers/platform
parentac7c1239fae01813ea4517f2b11aec7b4020f3a1 (diff)
acer-wmi: Add wireless quirk for Lenovo 3000 N200
commit be3128b107e36271f7973ef213ccde603a494fe8 upstream. 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 Signed-off-by: Seth Forshee <seth.forshee@canonical.com> Reviewed-by: Lee, Chun-Yi <jlee@novell.com> Signed-off-by: Matthew Garrett <mjg@redhat.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/platform')
-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 950cc0bf109..ccb8fef9479 100644
--- a/drivers/platform/x86/acer-wmi.c
+++ b/drivers/platform/x86/acer-wmi.c
@@ -463,6 +463,15 @@ static struct dmi_system_id acer_quirks[] = {
463 }, 463 },
464 .driver_data = &quirk_lenovo_ideapad_s205, 464 .driver_data = &quirk_lenovo_ideapad_s205,
465 }, 465 },
466 {
467 .callback = dmi_matched,
468 .ident = "Lenovo 3000 N200",
469 .matches = {
470 DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
471 DMI_MATCH(DMI_PRODUCT_NAME, "0687A31"),
472 },
473 .driver_data = &quirk_fujitsu_amilo_li_1718,
474 },
466 {} 475 {}
467}; 476};
468 477