* [PATCH] acer-wmi: fix rfkill conversion
@ 2009-06-17 10:51 Troy Moure
2009-06-17 11:15 ` Johannes Berg
2009-07-19 8:48 ` Alan Jenkins
0 siblings, 2 replies; 4+ messages in thread
From: Troy Moure @ 2009-06-17 10:51 UTC (permalink / raw)
To: John W. Linville; +Cc: linux-wireless, Johannes Berg
Commit 19d337dff95cbf76ed ("rfkill: rewrite") incorrectly reversed
the meaning of 'state' in acer_rfkill_update() when it changed
rfkill_force_state() to rfkill_set_sw_state(). Fix it.
Signed-off-by: Troy Moure <twmoure@szypr.net>
---
This fixes the rfkill switch on my Acer laptop, which was behaving
backwards (the state reported in the logs was the opposite of the
state indicated by the LED).
drivers/platform/x86/acer-wmi.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/platform/x86/acer-wmi.c b/drivers/platform/x86/acer-wmi.c
index 09a503e..be2fd6f 100644
--- a/drivers/platform/x86/acer-wmi.c
+++ b/drivers/platform/x86/acer-wmi.c
@@ -958,12 +958,12 @@ static void acer_rfkill_update(struct work_struct *ignored)
status = get_u32(&state, ACER_CAP_WIRELESS);
if (ACPI_SUCCESS(status))
- rfkill_set_sw_state(wireless_rfkill, !!state);
+ rfkill_set_sw_state(wireless_rfkill, !state);
if (has_cap(ACER_CAP_BLUETOOTH)) {
status = get_u32(&state, ACER_CAP_BLUETOOTH);
if (ACPI_SUCCESS(status))
- rfkill_set_sw_state(bluetooth_rfkill, !!state);
+ rfkill_set_sw_state(bluetooth_rfkill, !state);
}
schedule_delayed_work(&acer_rfkill_work, round_jiffies_relative(HZ));
--
1.6.2.2
^ permalink raw reply related [flat|nested] 4+ messages in thread* Re: [PATCH] acer-wmi: fix rfkill conversion
2009-06-17 10:51 [PATCH] acer-wmi: fix rfkill conversion Troy Moure
@ 2009-06-17 11:15 ` Johannes Berg
2009-07-19 8:48 ` Alan Jenkins
1 sibling, 0 replies; 4+ messages in thread
From: Johannes Berg @ 2009-06-17 11:15 UTC (permalink / raw)
To: Troy Moure; +Cc: John W. Linville, linux-wireless
[-- Attachment #1: Type: text/plain, Size: 1452 bytes --]
On Wed, 2009-06-17 at 11:51 +0100, Troy Moure wrote:
> Commit 19d337dff95cbf76ed ("rfkill: rewrite") incorrectly reversed
> the meaning of 'state' in acer_rfkill_update() when it changed
> rfkill_force_state() to rfkill_set_sw_state(). Fix it.
>
> Signed-off-by: Troy Moure <twmoure@szypr.net>
> ---
> This fixes the rfkill switch on my Acer laptop, which was behaving
> backwards (the state reported in the logs was the opposite of the
> state indicated by the LED).
Thanks. Looks like I made this mistake a few times.
johannes
> drivers/platform/x86/acer-wmi.c | 4 ++--
> 1 files changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/platform/x86/acer-wmi.c b/drivers/platform/x86/acer-wmi.c
> index 09a503e..be2fd6f 100644
> --- a/drivers/platform/x86/acer-wmi.c
> +++ b/drivers/platform/x86/acer-wmi.c
> @@ -958,12 +958,12 @@ static void acer_rfkill_update(struct work_struct *ignored)
>
> status = get_u32(&state, ACER_CAP_WIRELESS);
> if (ACPI_SUCCESS(status))
> - rfkill_set_sw_state(wireless_rfkill, !!state);
> + rfkill_set_sw_state(wireless_rfkill, !state);
>
> if (has_cap(ACER_CAP_BLUETOOTH)) {
> status = get_u32(&state, ACER_CAP_BLUETOOTH);
> if (ACPI_SUCCESS(status))
> - rfkill_set_sw_state(bluetooth_rfkill, !!state);
> + rfkill_set_sw_state(bluetooth_rfkill, !state);
> }
>
> schedule_delayed_work(&acer_rfkill_work, round_jiffies_relative(HZ));
[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 801 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread* [PATCH] acer-wmi: fix rfkill conversion
2009-06-17 10:51 [PATCH] acer-wmi: fix rfkill conversion Troy Moure
2009-06-17 11:15 ` Johannes Berg
@ 2009-07-19 8:48 ` Alan Jenkins
2009-07-19 8:53 ` Johannes Berg
1 sibling, 1 reply; 4+ messages in thread
From: Alan Jenkins @ 2009-07-19 8:48 UTC (permalink / raw)
To: John W. Linville; +Cc: Troy Moure, linux-wireless, Johannes Berg
On 6/17/09, Troy Moure <twmoure@szypr.net> wrote:
> Commit 19d337dff95cbf76ed ("rfkill: rewrite") incorrectly reversed
> the meaning of 'state' in acer_rfkill_update() when it changed
> rfkill_force_state() to rfkill_set_sw_state(). Fix it.
>
> Signed-off-by: Troy Moure <twmoure@szypr.net>
> ---
> This fixes the rfkill switch on my Acer laptop, which was behaving
> backwards (the state reported in the logs was the opposite of the
> state indicated by the LED).
I think there's another reversal error that you didn't notice :-). I found that acer-wmi disables the wireless when it is loaded.
The core tries to initialize the wireless to enabled, but the polarity is wrong in acer_rfkill_set(). It ends up disabling the wireless instead.
Here's a patch for it.
--->
>From 75953366b4958a77019729662a997f5d361a7529 Mon Sep 17 00:00:00 2001
From: Alan Jenkins <alan-jenkins@tuffmail.co.uk>
Date: Sun, 19 Jul 2009 09:29:21 +0100
Subject: [PATCH] acer-wmi: fix rfkill conversion
Fix another polarity error introduced by the rfkill rewrite,
this time in acer_rfkill_set().
Signed-off-by: Alan Jenkins <alan-jenkins@tuffmail.co.uk>
---
drivers/platform/x86/acer-wmi.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/platform/x86/acer-wmi.c b/drivers/platform/x86/acer-wmi.c
index be2fd6f..fb45f5e 100644
--- a/drivers/platform/x86/acer-wmi.c
+++ b/drivers/platform/x86/acer-wmi.c
@@ -973,7 +973,7 @@ static int acer_rfkill_set(void *data, bool blocked)
{
acpi_status status;
u32 cap = (unsigned long)data;
- status = set_u32(!!blocked, cap);
+ status = set_u32(!blocked, cap);
if (ACPI_FAILURE(status))
return -ENODEV;
return 0;
--
1.6.3.2
^ permalink raw reply related [flat|nested] 4+ messages in thread* Re: [PATCH] acer-wmi: fix rfkill conversion
2009-07-19 8:48 ` Alan Jenkins
@ 2009-07-19 8:53 ` Johannes Berg
0 siblings, 0 replies; 4+ messages in thread
From: Johannes Berg @ 2009-07-19 8:53 UTC (permalink / raw)
To: Alan Jenkins; +Cc: John W. Linville, Troy Moure, linux-wireless
[-- Attachment #1: Type: text/plain, Size: 2056 bytes --]
On Sun, 2009-07-19 at 09:48 +0100, Alan Jenkins wrote:
> On 6/17/09, Troy Moure <twmoure@szypr.net> wrote:
> > Commit 19d337dff95cbf76ed ("rfkill: rewrite") incorrectly reversed
> > the meaning of 'state' in acer_rfkill_update() when it changed
> > rfkill_force_state() to rfkill_set_sw_state(). Fix it.
> >
> > Signed-off-by: Troy Moure <twmoure@szypr.net>
> > ---
> > This fixes the rfkill switch on my Acer laptop, which was behaving
> > backwards (the state reported in the logs was the opposite of the
> > state indicated by the LED).
>
> I think there's another reversal error that you didn't notice :-). I
> found that acer-wmi disables the wireless when it is loaded.
Ahrg.
> The core tries to initialize the wireless to enabled, but the polarity
> is wrong in acer_rfkill_set(). It ends up disabling the wireless
> instead.
>
> Here's a patch for it.
I really should go back and audit it again, but every instance takes me
about 5 minutes to do the (not state != unblocked) thing in my
head ... :/
Thanks!
johannes
> --->
> From 75953366b4958a77019729662a997f5d361a7529 Mon Sep 17 00:00:00 2001
> From: Alan Jenkins <alan-jenkins@tuffmail.co.uk>
> Date: Sun, 19 Jul 2009 09:29:21 +0100
> Subject: [PATCH] acer-wmi: fix rfkill conversion
>
> Fix another polarity error introduced by the rfkill rewrite,
> this time in acer_rfkill_set().
>
> Signed-off-by: Alan Jenkins <alan-jenkins@tuffmail.co.uk>
> ---
> drivers/platform/x86/acer-wmi.c | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/drivers/platform/x86/acer-wmi.c b/drivers/platform/x86/acer-wmi.c
> index be2fd6f..fb45f5e 100644
> --- a/drivers/platform/x86/acer-wmi.c
> +++ b/drivers/platform/x86/acer-wmi.c
> @@ -973,7 +973,7 @@ static int acer_rfkill_set(void *data, bool blocked)
> {
> acpi_status status;
> u32 cap = (unsigned long)data;
> - status = set_u32(!!blocked, cap);
> + status = set_u32(!blocked, cap);
> if (ACPI_FAILURE(status))
> return -ENODEV;
> return 0;
[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 801 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2009-07-19 8:53 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-06-17 10:51 [PATCH] acer-wmi: fix rfkill conversion Troy Moure
2009-06-17 11:15 ` Johannes Berg
2009-07-19 8:48 ` Alan Jenkins
2009-07-19 8:53 ` Johannes Berg
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox