diff options
author | Alan Jenkins <alan-jenkins@tuffmail.co.uk> | 2009-09-24 15:15:24 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2009-09-28 16:55:07 -0400 |
commit | 50fab0760a6c07cded229357a1351c325a575770 (patch) | |
tree | 93bb6f7cc4b02890ed3cbde92405646c1ed4983b | |
parent | 8f1546cadf7ac5e9a40d54089a1c7302264ec49b (diff) |
sony-laptop: check for rfkill hard block at load time
"I recently (on a flight) I found out that when I boot with the hard-switch
activated, so turning off all wireless activity on my laptop, the state
is not correctly announced in /dev/rfkill (reading it with rfkill command,
or my own gnome applet)...
After turning off and on again the hard-switch the events were right."
We can fix this by querying the firmware at load time and calling
rfkill_set_hw_state().
Signed-off-by: Alan Jenkins <alan-jenkins@tuffmail.co.uk>
Tested-by: Norbert Preining <preining@logic.at>
Acked-by: Johannes Berg <johannes@sipsolutions.net>
Acked-by: Mattia Dongili <malattia@linux.it>
CC: stable@kernel.org
Signed-off-by: John W. Linville <linville@tuxdriver.com>
-rw-r--r-- | drivers/platform/x86/sony-laptop.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/platform/x86/sony-laptop.c b/drivers/platform/x86/sony-laptop.c index f9f68e0e7344..f3466a0fa25f 100644 --- a/drivers/platform/x86/sony-laptop.c +++ b/drivers/platform/x86/sony-laptop.c | |||
@@ -1078,6 +1078,8 @@ static int sony_nc_setup_rfkill(struct acpi_device *device, | |||
1078 | struct rfkill *rfk; | 1078 | struct rfkill *rfk; |
1079 | enum rfkill_type type; | 1079 | enum rfkill_type type; |
1080 | const char *name; | 1080 | const char *name; |
1081 | int result; | ||
1082 | bool hwblock; | ||
1081 | 1083 | ||
1082 | switch (nc_type) { | 1084 | switch (nc_type) { |
1083 | case SONY_WIFI: | 1085 | case SONY_WIFI: |
@@ -1105,6 +1107,10 @@ static int sony_nc_setup_rfkill(struct acpi_device *device, | |||
1105 | if (!rfk) | 1107 | if (!rfk) |
1106 | return -ENOMEM; | 1108 | return -ENOMEM; |
1107 | 1109 | ||
1110 | sony_call_snc_handle(0x124, 0x200, &result); | ||
1111 | hwblock = !(result & 0x1); | ||
1112 | rfkill_set_hw_state(rfk, hwblock); | ||
1113 | |||
1108 | err = rfkill_register(rfk); | 1114 | err = rfkill_register(rfk); |
1109 | if (err) { | 1115 | if (err) { |
1110 | rfkill_destroy(rfk); | 1116 | rfkill_destroy(rfk); |