aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorSujith Manoharan <c_manoha@qca.qualcomm.com>2015-03-14 01:57:57 -0400
committerKalle Valo <kvalo@codeaurora.org>2015-03-20 02:28:14 -0400
commit7644317bd39c147c888b5d4cea3e2706d12483dd (patch)
tree82bfd7f87c3f8def1c2eed69a75382510869dce7 /drivers
parent60544603b669a25adb90bd6e2ea6fa625e380322 (diff)
ath9k: Start AIC calibration during MCI reset
When a MCI reset is done, make sure that AIC is started. Signed-off-by: Sujith Manoharan <c_manoha@qca.qualcomm.com> Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/net/wireless/ath/ath9k/ar9003_mci.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/net/wireless/ath/ath9k/ar9003_mci.c b/drivers/net/wireless/ath/ath9k/ar9003_mci.c
index cdd83d4038a3..af5ee416a560 100644
--- a/drivers/net/wireless/ath/ath9k/ar9003_mci.c
+++ b/drivers/net/wireless/ath/ath9k/ar9003_mci.c
@@ -1017,6 +1017,9 @@ int ar9003_mci_reset(struct ath_hw *ah, bool en_int, bool is_2g,
1017 if (en_int) 1017 if (en_int)
1018 ar9003_mci_enable_interrupt(ah); 1018 ar9003_mci_enable_interrupt(ah);
1019 1019
1020 if (ath9k_hw_is_aic_enabled(ah))
1021 ar9003_aic_start_normal(ah);
1022
1020 return 0; 1023 return 0;
1021} 1024}
1022 1025