diff options
author | Felix Fietkau <nbd@openwrt.org> | 2010-07-23 02:12:19 (GMT) |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2010-07-26 19:32:42 (GMT) |
commit | d9292c0db7b4e98ae6d34a662ef49a8bd127fd8f (patch) | |
tree | 5f0cfeca368ee2f5107446e22a73b6e5e93823d8 | |
parent | 866b7780fce95989dfc85f3e372635f5147e0d90 (diff) | |
download | linux-d9292c0db7b4e98ae6d34a662ef49a8bd127fd8f.tar.xz |
ath9k_hw: fix a small typo in the noisefloor calibration debug code
In the noisefloor array, the extension channel values start at index 3
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
-rw-r--r-- | drivers/net/wireless/ath/ath9k/calib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/ath/ath9k/calib.c b/drivers/net/wireless/ath/ath9k/calib.c index 7f4c55f..0737246 100644 --- a/drivers/net/wireless/ath/ath9k/calib.c +++ b/drivers/net/wireless/ath/ath9k/calib.c @@ -278,7 +278,7 @@ static void ath9k_hw_nf_sanitize(struct ath_hw *ah, s16 *nf) ath_print(common, ATH_DBG_CALIBRATE, "NF calibrated [%s] [chain %d] is %d\n", - (i > 3 ? "ext" : "ctl"), i % 3, nf[i]); + (i >= 3 ? "ext" : "ctl"), i % 3, nf[i]); if (nf[i] > limit->max) { ath_print(common, ATH_DBG_CALIBRATE, |