diff options
author | John W. Linville <linville@tuxdriver.com> | 2012-08-14 14:42:54 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2012-08-14 14:42:54 -0400 |
commit | 1e55217e174f4e6920fd441dcd3aaf8e37645460 (patch) | |
tree | 896dcc55f7f3d54022677747cdcfc26897d33549 /drivers/net/wireless/ath/ath5k/base.c | |
parent | 3bf671af14d591ede9251acb0085e8017f3705e7 (diff) | |
parent | 7dd6753f6d2e7e0ccbf2263cef3a9fff6bc89988 (diff) |
Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless into for-davem
Diffstat (limited to 'drivers/net/wireless/ath/ath5k/base.c')
-rw-r--r-- | drivers/net/wireless/ath/ath5k/base.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/drivers/net/wireless/ath/ath5k/base.c b/drivers/net/wireless/ath/ath5k/base.c index 8c4c040a47b..2aab20ee9f3 100644 --- a/drivers/net/wireless/ath/ath5k/base.c +++ b/drivers/net/wireless/ath/ath5k/base.c @@ -2056,9 +2056,7 @@ ath5k_beacon_update_timers(struct ath5k_hw *ah, u64 bc_tsf) void ath5k_beacon_config(struct ath5k_hw *ah) { - unsigned long flags; - - spin_lock_irqsave(&ah->block, flags); + spin_lock_bh(&ah->block); ah->bmisscount = 0; ah->imask &= ~(AR5K_INT_BMISS | AR5K_INT_SWBA); @@ -2085,7 +2083,7 @@ ath5k_beacon_config(struct ath5k_hw *ah) ath5k_hw_set_imr(ah, ah->imask); mmiowb(); - spin_unlock_irqrestore(&ah->block, flags); + spin_unlock_bh(&ah->block); } static void ath5k_tasklet_beacon(unsigned long data) |