diff options
author | adrian <adrian@FreeBSD.org> | 2011-05-11 13:25:43 +0000 |
---|---|---|
committer | adrian <adrian@FreeBSD.org> | 2011-05-11 13:25:43 +0000 |
commit | 83c864fab302436b5d4ba1aa63338d6003d0783e (patch) | |
tree | b6f1e336f334d974fd596cc2d1ca0ed850184dab | |
parent | c7c34734f4e284fca5be38a6050b79188ece8221 (diff) | |
download | FreeBSD-src-83c864fab302436b5d4ba1aa63338d6003d0783e.zip FreeBSD-src-83c864fab302436b5d4ba1aa63338d6003d0783e.tar.gz |
Always log if the NF CCA load fails; so users with debugging enabled
can see they're likely in a very noisy environment.
-rw-r--r-- | sys/dev/ath/ath_hal/ar5416/ar5416_cal.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/ath/ath_hal/ar5416/ar5416_cal.c b/sys/dev/ath/ath_hal/ar5416/ar5416_cal.c index 78fcd0f..e39de1d 100644 --- a/sys/dev/ath/ath_hal/ar5416/ar5416_cal.c +++ b/sys/dev/ath/ath_hal/ar5416/ar5416_cal.c @@ -638,8 +638,8 @@ ar5416LoadNF(struct ath_hal *ah, const struct ieee80211_channel *chan) * here, the baseband nf cal will just be capped by our present * noisefloor until the next calibration timer. */ - HALDEBUG(ah, HAL_DEBUG_ANY, "Timeout while waiting for nf " - "to load: AR_PHY_AGC_CONTROL=0x%x\n", + HALDEBUG(ah, HAL_DEBUG_UNMASKABLE, "Timeout while waiting for " + "nf to load: AR_PHY_AGC_CONTROL=0x%x\n", OS_REG_READ(ah, AR_PHY_AGC_CONTROL)); return; } |