aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/ath/ath9k/ar9003_phy.c
diff options
context:
space:
mode:
authorGabor Juhos <juhosg@openwrt.org>2011-06-21 11:23:47 +0200
committerJohn W. Linville <linville@tuxdriver.com>2011-06-22 16:09:56 -0400
commitc4cf2c589ddf7526fa1a3f28580ce8e4e611dd3d (patch)
tree6a0ebb798504cbdc7096eb1479b713c9da435a6f /drivers/net/wireless/ath/ath9k/ar9003_phy.c
parentath9k: add fast_div_bias configuration for diversity group 1 (diff)
downloadlinux-dev-c4cf2c589ddf7526fa1a3f28580ce8e4e611dd3d.tar.xz
linux-dev-c4cf2c589ddf7526fa1a3f28580ce8e4e611dd3d.zip
ath9k: set diversity group for AR9330
Signed-off-by: Gabor Juhos <juhosg@openwrt.org> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/ath/ath9k/ar9003_phy.c')
-rw-r--r--drivers/net/wireless/ath/ath9k/ar9003_phy.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers/net/wireless/ath/ath9k/ar9003_phy.c b/drivers/net/wireless/ath/ath9k/ar9003_phy.c
index e788fa0d5afd..1baca8e4715d 100644
--- a/drivers/net/wireless/ath/ath9k/ar9003_phy.c
+++ b/drivers/net/wireless/ath/ath9k/ar9003_phy.c
@@ -1215,7 +1215,10 @@ static void ar9003_hw_antdiv_comb_conf_get(struct ath_hw *ah,
antconf->fast_div_bias = (regval & AR_PHY_9485_ANT_FAST_DIV_BIAS) >>
AR_PHY_9485_ANT_FAST_DIV_BIAS_S;
- if (AR_SREV_9485(ah)) {
+ if (AR_SREV_9330_11(ah)) {
+ antconf->lna1_lna2_delta = -9;
+ antconf->div_group = 1;
+ } else if (AR_SREV_9485(ah)) {
antconf->lna1_lna2_delta = -9;
antconf->div_group = 2;
} else {