summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCorentin Chary2011-12-15 08:27:36 +0100
committerMatthew Garrett2012-03-20 17:02:17 +0100
commit26594dd47669ec213297b25fae20cdbb21f877b8 (patch)
treefe45ca903059862b977609c1faa560e896c3dd44
parentasus-laptop: add rfkill interfaces for wlan and wwan (diff)
downloadkernel-qcow2-linux-26594dd47669ec213297b25fae20cdbb21f877b8.tar.gz
kernel-qcow2-linux-26594dd47669ec213297b25fae20cdbb21f877b8.tar.xz
kernel-qcow2-linux-26594dd47669ec213297b25fae20cdbb21f877b8.zip
asus-laptop: check WLED and BLED presence before adding rfkill
Signed-off-by: Corentin Chary <corentin.chary@gmail.com> Signed-off-by: Matthew Garrett <mjg@redhat.com>
-rw-r--r--drivers/platform/x86/asus-laptop.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/platform/x86/asus-laptop.c b/drivers/platform/x86/asus-laptop.c
index 547b9eba03ae..c1125b36d177 100644
--- a/drivers/platform/x86/asus-laptop.c
+++ b/drivers/platform/x86/asus-laptop.c
@@ -1361,14 +1361,16 @@ static int asus_rfkill_init(struct asus_laptop *asus)
goto exit;
- if (asus->wled_type == TYPE_RFKILL)
+ if (!acpi_check_handle(asus->handle, METHOD_WLAN, NULL) &&
+ asus->wled_type == TYPE_RFKILL)
result = asus_rfkill_setup(asus, &asus->wlan, "asus-wlan",
WL_RSTS, RFKILL_TYPE_WLAN,
&asus_rfkill_ops);
if (result)
goto exit;
- if (asus->bled_type == TYPE_RFKILL)
+ if (!acpi_check_handle(asus->handle, METHOD_BLUETOOTH, NULL) &&
+ asus->bled_type == TYPE_RFKILL)
result = asus_rfkill_setup(asus, &asus->bluetooth,
"asus-bluetooth", BT_RSTS,
RFKILL_TYPE_BLUETOOTH,