mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-12 14:29:28 +00:00
Due to the way HALDEBUG() is defined, we need to add curly brackets
when using it as a sole if clause instruction. While there, fix 'const static' typo. Submitted by: Arnaud Lacombe <alc@FreeBSD.org> MFC after: 1 week
This commit is contained in:
parent
3a4a144128
commit
bf59e055db
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=208644
@ -46,7 +46,7 @@ typedef struct {
|
|||||||
} CHAN_INFO_2GHZ;
|
} CHAN_INFO_2GHZ;
|
||||||
|
|
||||||
#define CI_2GHZ_INDEX_CORRECTION 19
|
#define CI_2GHZ_INDEX_CORRECTION 19
|
||||||
const static CHAN_INFO_2GHZ chan2GHzData[] = {
|
static const CHAN_INFO_2GHZ chan2GHzData[] = {
|
||||||
{ 1, 0x46, 96 }, /* 2312 -19 */
|
{ 1, 0x46, 96 }, /* 2312 -19 */
|
||||||
{ 1, 0x46, 97 }, /* 2317 -18 */
|
{ 1, 0x46, 97 }, /* 2317 -18 */
|
||||||
{ 1, 0x46, 98 }, /* 2322 -17 */
|
{ 1, 0x46, 98 }, /* 2322 -17 */
|
||||||
@ -926,9 +926,10 @@ ar5211IsNfGood(struct ath_hal *ah, struct ieee80211_channel *chan)
|
|||||||
|
|
||||||
if (!getNoiseFloorThresh(ah, chan, &nfThresh))
|
if (!getNoiseFloorThresh(ah, chan, &nfThresh))
|
||||||
return AH_FALSE;
|
return AH_FALSE;
|
||||||
if (OS_REG_READ(ah, AR_PHY_AGC_CONTROL) & AR_PHY_AGC_CONTROL_NF)
|
if (OS_REG_READ(ah, AR_PHY_AGC_CONTROL) & AR_PHY_AGC_CONTROL_NF) {
|
||||||
HALDEBUG(ah, HAL_DEBUG_ANY,
|
HALDEBUG(ah, HAL_DEBUG_ANY,
|
||||||
"%s: NF did not complete in calibration window\n", __func__);
|
"%s: NF did not complete in calibration window\n", __func__);
|
||||||
|
}
|
||||||
nf = ar5211GetNoiseFloor(ah);
|
nf = ar5211GetNoiseFloor(ah);
|
||||||
if (nf > nfThresh) {
|
if (nf > nfThresh) {
|
||||||
HALDEBUG(ah, HAL_DEBUG_ANY,
|
HALDEBUG(ah, HAL_DEBUG_ANY,
|
||||||
|
Loading…
Reference in New Issue
Block a user