aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/platform/x86
diff options
context:
space:
mode:
authorCorentin Chary <corentincj@iksaif.net>2010-01-17 11:21:13 -0500
committerCorentin Chary <corentincj@iksaif.net>2010-02-28 13:35:12 -0500
commitd0930a2d42c5a28039d8cc2376a7dff4e59c5f7a (patch)
treeadcac1276708032640f72feb83e09acdbd3fc740 /drivers/platform/x86
parente5593bf18be79b4897c7ec8b392dc7f07cbc1b11 (diff)
asus-laptop: rename wireless_status to wlan_status to avoid confusion
Signed-off-by: Corentin Chary <corentincj@iksaif.net>
Diffstat (limited to 'drivers/platform/x86')
-rw-r--r--drivers/platform/x86/asus-laptop.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/platform/x86/asus-laptop.c b/drivers/platform/x86/asus-laptop.c
index aad6b9300f5d..bb8fb45c45e9 100644
--- a/drivers/platform/x86/asus-laptop.c
+++ b/drivers/platform/x86/asus-laptop.c
@@ -76,11 +76,11 @@ static uint wapf = 1;
76module_param(wapf, uint, 0644); 76module_param(wapf, uint, 0644);
77MODULE_PARM_DESC(wapf, "WAPF value"); 77MODULE_PARM_DESC(wapf, "WAPF value");
78 78
79static uint wireless_status = 1; 79static uint wlan_status = 1;
80static uint bluetooth_status = 1; 80static uint bluetooth_status = 1;
81 81
82module_param(wireless_status, uint, 0644); 82module_param(wlan_status, uint, 0644);
83MODULE_PARM_DESC(wireless_status, "Set the wireless status on boot " 83MODULE_PARM_DESC(wlan_status, "Set the wireless status on boot "
84 "(0 = disabled, 1 = enabled, -1 = don't do anything). " 84 "(0 = disabled, 1 = enabled, -1 = don't do anything). "
85 "default is 1"); 85 "default is 1");
86 86
@@ -1446,8 +1446,8 @@ static int __devinit asus_acpi_init(struct asus_laptop *asus)
1446 if (bluetooth_status >= 0) 1446 if (bluetooth_status >= 0)
1447 asus_bluetooth_set(asus, !!bluetooth_status); 1447 asus_bluetooth_set(asus, !!bluetooth_status);
1448 1448
1449 if (wireless_status >= 0) 1449 if (wlan_status >= 0)
1450 asus_wlan_set(asus, !!wireless_status); 1450 asus_wlan_set(asus, !!wlan_status);
1451 1451
1452 /* Keyboard Backlight is on by default */ 1452 /* Keyboard Backlight is on by default */
1453 if (!acpi_check_handle(asus->handle, METHOD_KBD_LIGHT_SET, NULL)) 1453 if (!acpi_check_handle(asus->handle, METHOD_KBD_LIGHT_SET, NULL))