summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBob Copeland2009-03-17 03:34:02 +0100
committerJohn W. Linville2009-03-28 01:12:54 +0100
commit9ca9fb8aa8422595956af9681518cdb8b167055e (patch)
treed1fe017eb12af73241023ef6216431f0bffc97c1
parentath5k: Convert chip specific calibration data to a generic format (diff)
downloadkernel-qcow2-linux-9ca9fb8aa8422595956af9681518cdb8b167055e.tar.gz
kernel-qcow2-linux-9ca9fb8aa8422595956af9681518cdb8b167055e.tar.xz
kernel-qcow2-linux-9ca9fb8aa8422595956af9681518cdb8b167055e.zip
ath5k: disable MIB interrupts
The MIB interrupt fires whenever counters overflow; however without support for automatic noise immunity, we can sometimes get an interrupt storm. The get_stats() callback reads the counters anyway so we can disable the interrupt for now until ANI is implemented. This fixes the issue reported in http://bugzilla.kernel.org/show_bug.cgi?id=12647. Changes-licensed-under: 3-Clause-BSD Cc: stable@kernel.org Signed-off-by: Bob Copeland <me@bobcopeland.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
-rw-r--r--drivers/net/wireless/ath5k/base.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/ath5k/base.c b/drivers/net/wireless/ath5k/base.c
index cad3ccf61b00..8eec155ed0cc 100644
--- a/drivers/net/wireless/ath5k/base.c
+++ b/drivers/net/wireless/ath5k/base.c
@@ -2305,7 +2305,7 @@ ath5k_init(struct ath5k_softc *sc)
sc->curband = &sc->sbands[sc->curchan->band];
sc->imask = AR5K_INT_RXOK | AR5K_INT_RXERR | AR5K_INT_RXEOL |
AR5K_INT_RXORN | AR5K_INT_TXDESC | AR5K_INT_TXEOL |
- AR5K_INT_FATAL | AR5K_INT_GLOBAL | AR5K_INT_MIB;
+ AR5K_INT_FATAL | AR5K_INT_GLOBAL;
ret = ath5k_reset(sc, false, false);
if (ret)
goto done;