diff options
author | Felix Fietkau <nbd@openwrt.org> | 2012-03-14 11:40:30 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2012-03-15 13:45:06 -0400 |
commit | 9951c4d042dbc325b147cce5bd6f6436adb2c7fc (patch) | |
tree | dd4661b260dbe14360b7c803facbae8948ce423b /drivers/net/wireless | |
parent | c8664d13a58f7cccc673c0840efcc698f7872172 (diff) |
ath9k_hw: fix AR9380 register settings for channel 14
Program the ah->ini_japan2484 INI values which were left out by accident
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless')
-rw-r--r-- | drivers/net/wireless/ath/ath9k/ar9003_phy.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/net/wireless/ath/ath9k/ar9003_phy.c b/drivers/net/wireless/ath/ath9k/ar9003_phy.c index 70e27d2a5e43..99b64f27bb22 100644 --- a/drivers/net/wireless/ath/ath9k/ar9003_phy.c +++ b/drivers/net/wireless/ath/ath9k/ar9003_phy.c | |||
@@ -691,6 +691,9 @@ static int ar9003_hw_process_ini(struct ath_hw *ah, | |||
691 | if (AR_SREV_9462(ah)) | 691 | if (AR_SREV_9462(ah)) |
692 | ar9003_hw_prog_ini(ah, &ah->ini_BTCOEX_MAX_TXPWR, 1); | 692 | ar9003_hw_prog_ini(ah, &ah->ini_BTCOEX_MAX_TXPWR, 1); |
693 | 693 | ||
694 | if (chan->channel == 2484) | ||
695 | ar9003_hw_prog_ini(ah, &ah->ini_japan2484, 1); | ||
696 | |||
694 | ah->modes_index = modesIndex; | 697 | ah->modes_index = modesIndex; |
695 | ar9003_hw_override_ini(ah); | 698 | ar9003_hw_override_ini(ah); |
696 | ar9003_hw_set_channel_regs(ah, chan); | 699 | ar9003_hw_set_channel_regs(ah, chan); |