diff options
author | Sujith Manoharan <c_manoha@qca.qualcomm.com> | 2014-02-06 23:59:51 -0500 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2014-02-12 15:36:06 -0500 |
commit | 8c2213876e8e051d22f7cb9bcbb5ce3da3b9b41f (patch) | |
tree | e2d82ada1b9bb7de7aab98e7d40f3acfec53a026 /drivers/net/wireless/ath/ath9k/ar9003_calib.c | |
parent | 9fded99ad7b94eae51d6d12c7016157deeedbb65 (diff) |
ath9k: Rename ar9003_hw_tx_iqcal_load_avg_2_passes
Use ar9003_hw_tx_iq_cal_outlier_detection instead.
Signed-off-by: Sujith Manoharan <c_manoha@qca.qualcomm.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/ath/ath9k/ar9003_calib.c')
-rw-r--r-- | drivers/net/wireless/ath/ath9k/ar9003_calib.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/net/wireless/ath/ath9k/ar9003_calib.c b/drivers/net/wireless/ath/ath9k/ar9003_calib.c index 834295d060ab..b3f7ea7e213a 100644 --- a/drivers/net/wireless/ath/ath9k/ar9003_calib.c +++ b/drivers/net/wireless/ath/ath9k/ar9003_calib.c | |||
@@ -883,9 +883,9 @@ static void ar9003_hw_detect_outlier(int *mp_coeff, int nmeasurement, | |||
883 | } | 883 | } |
884 | } | 884 | } |
885 | 885 | ||
886 | static void ar9003_hw_tx_iqcal_load_avg_2_passes(struct ath_hw *ah, | 886 | static void ar9003_hw_tx_iq_cal_outlier_detection(struct ath_hw *ah, |
887 | struct coeff *coeff, | 887 | struct coeff *coeff, |
888 | bool is_reusable) | 888 | bool is_reusable) |
889 | { | 889 | { |
890 | int i, im, nmeasurement; | 890 | int i, im, nmeasurement; |
891 | u32 tx_corr_coeff[MAX_MEASUREMENT][AR9300_MAX_CHAINS]; | 891 | u32 tx_corr_coeff[MAX_MEASUREMENT][AR9300_MAX_CHAINS]; |
@@ -1072,7 +1072,7 @@ static void ar9003_hw_tx_iq_cal_post_proc(struct ath_hw *ah, bool is_reusable) | |||
1072 | coeff.phs_coeff[i][im] -= 128; | 1072 | coeff.phs_coeff[i][im] -= 128; |
1073 | } | 1073 | } |
1074 | } | 1074 | } |
1075 | ar9003_hw_tx_iqcal_load_avg_2_passes(ah, &coeff, is_reusable); | 1075 | ar9003_hw_tx_iq_cal_outlier_detection(ah, &coeff, is_reusable); |
1076 | 1076 | ||
1077 | return; | 1077 | return; |
1078 | 1078 | ||