aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/b43/phy_common.c
diff options
context:
space:
mode:
authorMichael Buesch <mb@bu3sch.de>2008-12-19 18:40:00 +0100
committerJohn W. Linville <linville@tuxdriver.com>2008-12-19 15:24:04 -0500
commitb929ecf7965c2dab7e373f390ac5fc563011484d (patch)
tree915a70623f5b18309dbc2cf7ba6355d4ba4c19e4 /drivers/net/wireless/b43/phy_common.c
parentfd6effcaf8a894c0a0f602b943dbc54a170d4418 (diff)
downloadkernel_samsung_smdk4412-b929ecf7965c2dab7e373f390ac5fc563011484d.zip
kernel_samsung_smdk4412-b929ecf7965c2dab7e373f390ac5fc563011484d.tar.gz
kernel_samsung_smdk4412-b929ecf7965c2dab7e373f390ac5fc563011484d.tar.bz2
b43: Suspend MAC while killing the radio
We should suspend the MAC, before we kill the radio. This gives the MAC a chance to leave any TX/RX state and it avoids races on the PHY/RADIO registers. Signed-off-by: Michael Buesch <mb@bu3sch.de> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/b43/phy_common.c')
-rw-r--r--drivers/net/wireless/b43/phy_common.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/net/wireless/b43/phy_common.c b/drivers/net/wireless/b43/phy_common.c
index 2ebfc7d..026b61c 100644
--- a/drivers/net/wireless/b43/phy_common.c
+++ b/drivers/net/wireless/b43/phy_common.c
@@ -296,8 +296,10 @@ void b43_software_rfkill(struct b43_wldev *dev, enum rfkill_state state)
state = RFKILL_STATE_SOFT_BLOCKED;
}
+ b43_mac_suspend(dev);
phy->ops->software_rfkill(dev, state);
phy->radio_on = (state == RFKILL_STATE_UNBLOCKED);
+ b43_mac_enable(dev);
}
/**