]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
acer-wmi: check the existence of internal 3G device when set capability
authorLee, Chun-Yi <joeyli.kernel@gmail.com>
Sat, 21 May 2011 23:33:52 +0000 (07:33 +0800)
committerMatthew Garrett <mjg@redhat.com>
Fri, 27 May 2011 16:38:49 +0000 (12:38 -0400)
That will be better to check the existence of internal 3G device when
we set threeg capability and generate killswitch for threeg. It can
avoid userland access 3G rfkill but the machine doesn't have internal
3G device.

Reference: bko#32862
https://bugzilla.kernel.org/show_bug.cgi?id=32862

Tested on Acer Aspire 8930G, Acer Travelmate 8572

Tested-by: Hector Martin <hector@marcansoft.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@novell.com>
Signed-off-by: Matthew Garrett <mjg@redhat.com>
drivers/platform/x86/acer-wmi.c

index 57c6c8a4db24c52ffbd848a98eb01e939e3928c8..92ee4d6372700f1b9d5ccea4169610a864daff7c 100644 (file)
@@ -889,7 +889,8 @@ static acpi_status WMID_set_capabilities(void)
        dmi_walk(type_aa_dmi_decode, NULL);
        if (!has_type_aa) {
                interface->capability |= ACER_CAP_WIRELESS;
-               interface->capability |= ACER_CAP_THREEG;
+               if (devices & 0x40)
+                       interface->capability |= ACER_CAP_THREEG;
                if (devices & 0x10)
                        interface->capability |= ACER_CAP_BLUETOOTH;
        }