diff options
author | Rajkumar Manoharan <rmanohar@qti.qualcomm.com> | 2014-06-24 16:57:40 (GMT) |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2014-06-25 19:40:39 (GMT) |
commit | 76ac9ed6ffb32eb38d2f208204159ae0cd3394b6 (patch) | |
tree | d3dc99baa0d2aec261691bed0603cafc439e6f63 /drivers | |
parent | af2db444855a574cb58db1f5f6b7a53f2c0fefda (diff) | |
download | linux-76ac9ed6ffb32eb38d2f208204159ae0cd3394b6.tar.xz |
ath9k_hw: Fix pll2_divfrac for AR953x
Signed-off-by: Rajkumar Manoharan <rmanohar@qti.qualcomm.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/net/wireless/ath/ath9k/hw.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/net/wireless/ath/ath9k/hw.c b/drivers/net/wireless/ath/ath9k/hw.c index ace4fe2..fd0158f 100644 --- a/drivers/net/wireless/ath/ath9k/hw.c +++ b/drivers/net/wireless/ath/ath9k/hw.c @@ -791,7 +791,8 @@ static void ath9k_hw_init_pll(struct ath_hw *ah, refdiv = 5; } else { pll2_divint = 0x11; - pll2_divfrac = 0x26666; + pll2_divfrac = + AR_SREV_9531(ah) ? 0x26665 : 0x26666; refdiv = 1; } } |