Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 190210
b: refs/heads/master
c: 668f4a0
h: refs/heads/master
v: v3
  • Loading branch information
Dan Carpenter authored and Matthew Garrett committed Apr 12, 2010
1 parent 930a289 commit d1f0502
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: a0624a90a2bea97e0d65187b4b53ad400226c3f1
refs/heads/master: 668f4a03211ace7aa57dece90bd835b4f9b9dd30
8 changes: 4 additions & 4 deletions trunk/drivers/platform/x86/asus-laptop.c
Original file line number Diff line number Diff line change
Expand Up @@ -79,15 +79,15 @@ static uint wapf = 1;
module_param(wapf, uint, 0644);
MODULE_PARM_DESC(wapf, "WAPF value");

static uint wlan_status = 1;
static uint bluetooth_status = 1;
static int wlan_status = 1;
static int bluetooth_status = 1;

module_param(wlan_status, uint, 0644);
module_param(wlan_status, int, 0644);
MODULE_PARM_DESC(wlan_status, "Set the wireless status on boot "
"(0 = disabled, 1 = enabled, -1 = don't do anything). "
"default is 1");

module_param(bluetooth_status, uint, 0644);
module_param(bluetooth_status, int, 0644);
MODULE_PARM_DESC(bluetooth_status, "Set the wireless status on boot "
"(0 = disabled, 1 = enabled, -1 = don't do anything). "
"default is 1");
Expand Down

0 comments on commit d1f0502

Please sign in to comment.