diff options
author | Adel Gadllah <adel.gadllah@gmail.com> | 2008-06-29 13:20:21 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2008-06-30 17:37:37 -0400 |
commit | bc19d6e0b74ef03a3baf035412c95192b54dfc6f (patch) | |
tree | 1b31688f378377c721082ff743113478c7bc5ba1 /drivers/net/wireless/b43/rfkill.c | |
parent | f97d1f489d8b44a2c6e8529af855e5e0a2ceaf1e (diff) |
b43/b43legacy: add RFKILL_STATE_HARD_BLOCKED support
This patch sets the rfkill state to RFKILL_STATE_HARD_BLOCKED when the
radio is killed by the hardware switch.
Signed-off-by: Adel Gadllah <adel.gadllah@gmail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/b43/rfkill.c')
-rw-r--r-- | drivers/net/wireless/b43/rfkill.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/drivers/net/wireless/b43/rfkill.c b/drivers/net/wireless/b43/rfkill.c index 34ae125d538..fec5645944a 100644 --- a/drivers/net/wireless/b43/rfkill.c +++ b/drivers/net/wireless/b43/rfkill.c | |||
@@ -43,6 +43,23 @@ static bool b43_is_hw_radio_enabled(struct b43_wldev *dev) | |||
43 | return 0; | 43 | return 0; |
44 | } | 44 | } |
45 | 45 | ||
46 | /* Update the rfkill state */ | ||
47 | static void b43_rfkill_update_state(struct b43_wldev *dev) | ||
48 | { | ||
49 | struct b43_rfkill *rfk = &(dev->wl->rfkill); | ||
50 | |||
51 | if (!dev->radio_hw_enable) { | ||
52 | rfk->rfkill->state = RFKILL_STATE_HARD_BLOCKED; | ||
53 | return; | ||
54 | } | ||
55 | |||
56 | if (!dev->phy.radio_on) | ||
57 | rfk->rfkill->state = RFKILL_STATE_SOFT_BLOCKED; | ||
58 | else | ||
59 | rfk->rfkill->state = RFKILL_STATE_UNBLOCKED; | ||
60 | |||
61 | } | ||
62 | |||
46 | /* The poll callback for the hardware button. */ | 63 | /* The poll callback for the hardware button. */ |
47 | static void b43_rfkill_poll(struct input_polled_dev *poll_dev) | 64 | static void b43_rfkill_poll(struct input_polled_dev *poll_dev) |
48 | { | 65 | { |
@@ -60,6 +77,7 @@ static void b43_rfkill_poll(struct input_polled_dev *poll_dev) | |||
60 | if (unlikely(enabled != dev->radio_hw_enable)) { | 77 | if (unlikely(enabled != dev->radio_hw_enable)) { |
61 | dev->radio_hw_enable = enabled; | 78 | dev->radio_hw_enable = enabled; |
62 | report_change = 1; | 79 | report_change = 1; |
80 | b43_rfkill_update_state(dev); | ||
63 | b43info(wl, "Radio hardware status changed to %s\n", | 81 | b43info(wl, "Radio hardware status changed to %s\n", |
64 | enabled ? "ENABLED" : "DISABLED"); | 82 | enabled ? "ENABLED" : "DISABLED"); |
65 | } | 83 | } |