diff options
author | Felix Fietkau <nbd@openwrt.org> | 2013-01-09 16:16:54 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-02-03 18:27:03 -0600 |
commit | d15defa2a8600a65690e9a01d996a32f6d5efe47 (patch) | |
tree | dd994dcb99c76a540cf2289d6a990a213f427829 /drivers | |
parent | 528025c1a9960573a6fd2a20630c578a525c9e06 (diff) | |
download | lwn-d15defa2a8600a65690e9a01d996a32f6d5efe47.tar.gz lwn-d15defa2a8600a65690e9a01d996a32f6d5efe47.zip |
ath9k: remove the WARN_ON that triggers if generating a beacon fails
commit 3adcf20afb585993ffee24de36d1975f6b26b120 upstream.
During teardown, mac80211 will not return a new beacon. This is normal and
handled properly in the driver, so there's no need to spam the user with a kernel
warning here.
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/net/wireless/ath/ath9k/beacon.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/net/wireless/ath/ath9k/beacon.c b/drivers/net/wireless/ath/ath9k/beacon.c index 4527d0d9a681..4b2dabf60ebe 100644 --- a/drivers/net/wireless/ath/ath9k/beacon.c +++ b/drivers/net/wireless/ath/ath9k/beacon.c @@ -360,7 +360,6 @@ void ath9k_beacon_tasklet(unsigned long data) return; bf = ath9k_beacon_generate(sc->hw, vif); - WARN_ON(!bf); if (sc->beacon.bmisscnt != 0) { ath_dbg(common, BSTUCK, "resume beacon xmit after %u misses\n", |