Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linux-davinci
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
linux
linux-davinci
Commits
d0930a2d
Commit
d0930a2d
authored
Jan 17, 2010
by
Corentin Chary
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
asus-laptop: rename wireless_status to wlan_status to avoid confusion
Signed-off-by:
Corentin Chary
<
corentincj@iksaif.net
>
parent
e5593bf1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
drivers/platform/x86/asus-laptop.c
drivers/platform/x86/asus-laptop.c
+5
-5
No files found.
drivers/platform/x86/asus-laptop.c
View file @
d0930a2d
...
...
@@ -76,11 +76,11 @@ static uint wapf = 1;
module_param
(
wapf
,
uint
,
0644
);
MODULE_PARM_DESC
(
wapf
,
"WAPF value"
);
static
uint
w
ireless
_status
=
1
;
static
uint
w
lan
_status
=
1
;
static
uint
bluetooth_status
=
1
;
module_param
(
w
ireless
_status
,
uint
,
0644
);
MODULE_PARM_DESC
(
w
ireless
_status
,
"Set the wireless status on boot "
module_param
(
w
lan
_status
,
uint
,
0644
);
MODULE_PARM_DESC
(
w
lan
_status
,
"Set the wireless status on boot "
"(0 = disabled, 1 = enabled, -1 = don't do anything). "
"default is 1"
);
...
...
@@ -1446,8 +1446,8 @@ static int __devinit asus_acpi_init(struct asus_laptop *asus)
if
(
bluetooth_status
>=
0
)
asus_bluetooth_set
(
asus
,
!!
bluetooth_status
);
if
(
w
ireless
_status
>=
0
)
asus_wlan_set
(
asus
,
!!
w
ireless
_status
);
if
(
w
lan
_status
>=
0
)
asus_wlan_set
(
asus
,
!!
w
lan
_status
);
/* Keyboard Backlight is on by default */
if
(
!
acpi_check_handle
(
asus
->
handle
,
METHOD_KBD_LIGHT_SET
,
NULL
))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment