aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/ath/ath9k/hw.h
diff options
context:
space:
mode:
authorLuis R. Rodriguez <lrodriguez@atheros.com>2010-04-15 17:39:15 -0400
committerJohn W. Linville <linville@tuxdriver.com>2010-04-16 15:43:38 -0400
commit1547da37db9b56eb98eb0f33b84d49ab4e83e01e (patch)
tree6e31326ef4deb98b0268d630c7e3fe9c6a6978f7 /drivers/net/wireless/ath/ath9k/hw.h
parent15c9ee7af8a3527a82013ea447da2d8c491aabfe (diff)
ath9k_hw: add OFDM spur mitigation for AR9003
We add this now as OFDM spur mitigation required accessing the EEPROM for the AR9003 devices. Signed-off-by: Luis R. Rodriguez <lrodriguez@atheros.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/ath/ath9k/hw.h')
-rw-r--r--drivers/net/wireless/ath/ath9k/hw.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/net/wireless/ath/ath9k/hw.h b/drivers/net/wireless/ath/ath9k/hw.h
index d1b9940b2ae5..25713beb8e71 100644
--- a/drivers/net/wireless/ath/ath9k/hw.h
+++ b/drivers/net/wireless/ath/ath9k/hw.h
@@ -76,6 +76,8 @@
76#define REG_RMW_FIELD(_a, _r, _f, _v) \ 76#define REG_RMW_FIELD(_a, _r, _f, _v) \
77 REG_WRITE(_a, _r, \ 77 REG_WRITE(_a, _r, \
78 (REG_READ(_a, _r) & ~_f) | (((_v) << _f##_S) & _f)) 78 (REG_READ(_a, _r) & ~_f) | (((_v) << _f##_S) & _f))
79#define REG_READ_FIELD(_a, _r, _f) \
80 (((REG_READ(_a, _r) & _f) >> _f##_S))
79#define REG_SET_BIT(_a, _r, _f) \ 81#define REG_SET_BIT(_a, _r, _f) \
80 REG_WRITE(_a, _r, REG_READ(_a, _r) | _f) 82 REG_WRITE(_a, _r, REG_READ(_a, _r) | _f)
81#define REG_CLR_BIT(_a, _r, _f) \ 83#define REG_CLR_BIT(_a, _r, _f) \