diff options
author | Martin Xu <martin.xu@intel.com> | 2008-11-24 03:49:27 +0100 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2008-11-25 22:13:08 +0100 |
commit | 02969b38e6f7cef80e71d673d1e512e029a7009f (patch) | |
tree | 449215f7dc88b9f08307c225c043da818c1449dd /drivers/net/wireless/ath5k/base.h | |
parent | ath5k: fix Security issue in DebugFS part of ath5k (diff) | |
download | linux-02969b38e6f7cef80e71d673d1e512e029a7009f.tar.xz linux-02969b38e6f7cef80e71d673d1e512e029a7009f.zip |
ath5k: disable beacon filter when station is not associated
Ath5k driver has too many interrupts per second at idle
http://bugzilla.kernel.org/show_bug.cgi?id=11749
Signed-off-by: Martin Xu <martin.xu@intel.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/ath5k/base.h')
-rw-r--r-- | drivers/net/wireless/ath5k/base.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/wireless/ath5k/base.h b/drivers/net/wireless/ath5k/base.h index 06d1054ca94b..facc60ddada2 100644 --- a/drivers/net/wireless/ath5k/base.h +++ b/drivers/net/wireless/ath5k/base.h @@ -179,6 +179,7 @@ struct ath5k_softc { struct timer_list calib_tim; /* calibration timer */ int power_level; /* Requested tx power in dbm */ + bool assoc; /* assocate state */ }; #define ath5k_hw_hasbssidmask(_ah) \ |