diff options
author | Lee, Chun-Yi <joeyli.kernel@gmail.com> | 2012-12-14 03:14:28 -0500 |
---|---|---|
committer | Matthew Garrett <matthew.garrett@nebula.com> | 2013-02-24 17:49:56 -0500 |
commit | 5f3511d2a61e7874730d3ccc1a32d418259133be (patch) | |
tree | b4920ded8516948c52da29f79d526c737a8e9a07 /drivers/platform | |
parent | e6c33f1fe797355f1aed53b01230bd13ef52deff (diff) |
acer-wmi: support Lenovo ideapad S205 1038DPG wifi switch
Found another Lenovo ideapad S205 the product name is 1038DPG, it has
a 0x78 EC register exposes the state of wifi hardware switch on the machine.
So, add this patch to support Lenovo ideapad S205-1038DPG wifi hardware
switch in acer-wmi driver.
Evidently the Ideapad S205 is just a model name on the market, but they have
totally different product name in DMI table.
Reference: bko#43007
https://bugzilla.kernel.org/show_bug.cgi?id=43007
Tested-by: Colin <colin.newell@gmail.com>
Cc: Carlos Corbacho <carlos@strangeworlds.co.uk>
Cc: Matthew Garrett <mjg@redhat.com>
Cc: Dmitry Torokhov <dtor@mail.ru>
Cc: Corentin Chary <corentincj@iksaif.net>
Cc: Thomas Renninger <trenn@suse.de>
Signed-off-by: Lee, Chun-Yi <jlee@suse.com>
Signed-off-by: Matthew Garrett <matthew.garrett@nebula.com>
Diffstat (limited to 'drivers/platform')
-rw-r--r-- | drivers/platform/x86/acer-wmi.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/drivers/platform/x86/acer-wmi.c b/drivers/platform/x86/acer-wmi.c index 8d75e0399f69..563dc3f0e3e7 100644 --- a/drivers/platform/x86/acer-wmi.c +++ b/drivers/platform/x86/acer-wmi.c | |||
@@ -520,6 +520,15 @@ static struct dmi_system_id acer_quirks[] = { | |||
520 | }, | 520 | }, |
521 | .driver_data = &quirk_lenovo_ideapad_s205, | 521 | .driver_data = &quirk_lenovo_ideapad_s205, |
522 | }, | 522 | }, |
523 | { | ||
524 | .callback = dmi_matched, | ||
525 | .ident = "Lenovo Ideapad S205-1038DPG", | ||
526 | .matches = { | ||
527 | DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"), | ||
528 | DMI_MATCH(DMI_PRODUCT_NAME, "1038DPG"), | ||
529 | }, | ||
530 | .driver_data = &quirk_lenovo_ideapad_s205, | ||
531 | }, | ||
523 | {} | 532 | {} |
524 | }; | 533 | }; |
525 | 534 | ||