diff options
author | Michael Buesch <mb@bu3sch.de> | 2009-09-14 17:22:08 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2009-09-23 11:35:45 -0400 |
commit | e899a3f232125c393cdf7f7bf6533501ef8808fb (patch) | |
tree | bf6dae95b5e9da612ccdc24f56807c66ca310d0a /drivers/net/wireless/b43/leds.h | |
parent | 9308779aad721cab8434fd5f98d3c85d3716fdec (diff) |
b43: Don't abuse wl->current_dev in the led work
Don't abuse wl->current_dev in the LED work for checking whether we're
going down. Add an explicit variable.
This fixes a crash on rmmod dereferencing the wl->current_dev NULL pointer
in various other places of the driver.
Signed-off-by: Michael Buesch <mb@bu3sch.de>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/b43/leds.h')
-rw-r--r-- | drivers/net/wireless/b43/leds.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/wireless/b43/leds.h b/drivers/net/wireless/b43/leds.h index c4a58a0fc1d5..49d3da540c28 100644 --- a/drivers/net/wireless/b43/leds.h +++ b/drivers/net/wireless/b43/leds.h | |||
@@ -35,6 +35,7 @@ struct b43_leds { | |||
35 | struct b43_led led_radio; | 35 | struct b43_led led_radio; |
36 | struct b43_led led_assoc; | 36 | struct b43_led led_assoc; |
37 | 37 | ||
38 | bool stop; | ||
38 | struct work_struct work; | 39 | struct work_struct work; |
39 | }; | 40 | }; |
40 | 41 | ||