Commit b43d59fb authored by Luis R. Rodriguez's avatar Luis R. Rodriguez Committed by John W. Linville

ath9k_hw: rename getNoiseFloorThresh() to ath9k_hw_loadnf()

Signed-off-by: default avatarLuis R. Rodriguez <lrodriguez@atheros.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent 37c3e8b9
...@@ -89,7 +89,7 @@ static void ath9k_hw_update_nfcal_hist_buffer(struct ath9k_nfcal_hist *h, ...@@ -89,7 +89,7 @@ static void ath9k_hw_update_nfcal_hist_buffer(struct ath9k_nfcal_hist *h,
return; return;
} }
static bool getNoiseFloorThresh(struct ath_hw *ah, static bool ath9k_hw_get_nf_thresh(struct ath_hw *ah,
enum ieee80211_band band, enum ieee80211_band band,
int16_t *nft) int16_t *nft)
{ {
...@@ -612,7 +612,7 @@ int16_t ath9k_hw_getnf(struct ath_hw *ah, ...@@ -612,7 +612,7 @@ int16_t ath9k_hw_getnf(struct ath_hw *ah,
} else { } else {
ath9k_hw_do_getnf(ah, nfarray); ath9k_hw_do_getnf(ah, nfarray);
nf = nfarray[0]; nf = nfarray[0];
if (getNoiseFloorThresh(ah, c->band, &nfThresh) if (ath9k_hw_get_nf_thresh(ah, c->band, &nfThresh)
&& nf > nfThresh) { && nf > nfThresh) {
ath_print(common, ATH_DBG_CALIBRATE, ath_print(common, ATH_DBG_CALIBRATE,
"noise floor failed detected; " "noise floor failed detected; "
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment