diff options
author | Corentin Chary <corentin.chary@gmail.com> | 2011-12-15 02:27:36 -0500 |
---|---|---|
committer | Matthew Garrett <mjg@redhat.com> | 2012-03-20 12:02:17 -0400 |
commit | 26594dd47669ec213297b25fae20cdbb21f877b8 (patch) | |
tree | fe45ca903059862b977609c1faa560e896c3dd44 | |
parent | 3c8671ffd334cfb692089ec00141b56d5a796ae7 (diff) |
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.c | 6 |
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) | |||
1361 | goto exit; | 1361 | goto exit; |
1362 | 1362 | ||
1363 | 1363 | ||
1364 | if (asus->wled_type == TYPE_RFKILL) | 1364 | if (!acpi_check_handle(asus->handle, METHOD_WLAN, NULL) && |
1365 | asus->wled_type == TYPE_RFKILL) | ||
1365 | result = asus_rfkill_setup(asus, &asus->wlan, "asus-wlan", | 1366 | result = asus_rfkill_setup(asus, &asus->wlan, "asus-wlan", |
1366 | WL_RSTS, RFKILL_TYPE_WLAN, | 1367 | WL_RSTS, RFKILL_TYPE_WLAN, |
1367 | &asus_rfkill_ops); | 1368 | &asus_rfkill_ops); |
1368 | if (result) | 1369 | if (result) |
1369 | goto exit; | 1370 | goto exit; |
1370 | 1371 | ||
1371 | if (asus->bled_type == TYPE_RFKILL) | 1372 | if (!acpi_check_handle(asus->handle, METHOD_BLUETOOTH, NULL) && |
1373 | asus->bled_type == TYPE_RFKILL) | ||
1372 | result = asus_rfkill_setup(asus, &asus->bluetooth, | 1374 | result = asus_rfkill_setup(asus, &asus->bluetooth, |
1373 | "asus-bluetooth", BT_RSTS, | 1375 | "asus-bluetooth", BT_RSTS, |
1374 | RFKILL_TYPE_BLUETOOTH, | 1376 | RFKILL_TYPE_BLUETOOTH, |