• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/net/wireless/ath/ath9k/

Lines Matching defs:aniState

1055 	struct ar5416AniState *aniState = ah->curani;
1083 if (level > aniState->noiseImmunityLevel)
1085 else if (level < aniState->noiseImmunityLevel)
1087 aniState->noiseImmunityLevel = level;
1138 if (!on != aniState->ofdmWeakSigDetectOff) {
1143 aniState->ofdmWeakSigDetectOff = !on;
1154 if (high != aniState->cckWeakSigThreshold) {
1159 aniState->cckWeakSigThreshold = high;
1177 if (level > aniState->firstepLevel)
1179 else if (level < aniState->firstepLevel)
1181 aniState->firstepLevel = level;
1198 if (level > aniState->spurImmunityLevel)
1200 else if (level < aniState->spurImmunityLevel)
1202 aniState->spurImmunityLevel = level;
1217 aniState->noiseImmunityLevel,
1218 aniState->spurImmunityLevel,
1219 !aniState->ofdmWeakSigDetectOff);
1223 aniState->cckWeakSigThreshold,
1224 aniState->firstepLevel,
1225 aniState->listenTime);
1228 aniState->cycleCount,
1229 aniState->ofdmPhyErrCount,
1230 aniState->cckPhyErrCount);
1239 struct ar5416AniState *aniState = ah->curani;
1259 aniState->iniDef.m1ThreshLow : m1ThreshLow_off;
1261 aniState->iniDef.m2ThreshLow : m2ThreshLow_off;
1263 aniState->iniDef.m1Thresh : m1Thresh_off;
1265 aniState->iniDef.m2Thresh : m2Thresh_off;
1267 aniState->iniDef.m2CountThr : m2CountThr_off;
1269 aniState->iniDef.m2CountThrLow : m2CountThrLow_off;
1271 aniState->iniDef.m1ThreshLowExt : m1ThreshLowExt_off;
1273 aniState->iniDef.m2ThreshLowExt : m2ThreshLowExt_off;
1275 aniState->iniDef.m1ThreshExt : m1ThreshExt_off;
1277 aniState->iniDef.m2ThreshExt : m2ThreshExt_off;
1311 if (!on != aniState->ofdmWeakSigDetectOff) {
1315 !aniState->ofdmWeakSigDetectOff ?
1322 aniState->ofdmWeakSigDetectOff = !on;
1344 aniState->iniDef.firstep;
1359 aniState->iniDef.firstepLow;
1368 if (level != aniState->firstepLevel) {
1373 aniState->firstepLevel,
1377 aniState->iniDef.firstep);
1382 aniState->firstepLevel,
1386 aniState->iniDef.firstepLow);
1387 if (level > aniState->firstepLevel)
1389 else if (level < aniState->firstepLevel)
1391 aniState->firstepLevel = level;
1412 aniState->iniDef.cycpwrThr1;
1428 aniState->iniDef.cycpwrThr1Ext;
1436 if (level != aniState->spurImmunityLevel) {
1441 aniState->spurImmunityLevel,
1445 aniState->iniDef.cycpwrThr1);
1450 aniState->spurImmunityLevel,
1454 aniState->iniDef.cycpwrThr1Ext);
1455 if (level > aniState->spurImmunityLevel)
1457 else if (level < aniState->spurImmunityLevel)
1459 aniState->spurImmunityLevel = level;
1482 aniState->spurImmunityLevel,
1483 !aniState->ofdmWeakSigDetectOff ? "on" : "off",
1484 aniState->firstepLevel,
1485 !aniState->mrcCCKOff ? "on" : "off",
1486 aniState->listenTime,
1487 aniState->cycleCount,
1488 aniState->listenTime,
1489 aniState->ofdmPhyErrCount,
1490 aniState->cckPhyErrCount);
1528 struct ar5416AniState *aniState;
1536 aniState = &ah->ani[index];
1537 ah->curani = aniState;
1538 iniDef = &aniState->iniDef;
1577 aniState->spurImmunityLevel = ATH9K_ANI_SPUR_IMMUNE_LVL_NEW;
1578 aniState->firstepLevel = ATH9K_ANI_FIRSTEP_LVL_NEW;
1579 aniState->ofdmWeakSigDetectOff = !ATH9K_ANI_USE_OFDM_WEAK_SIG;
1580 aniState->mrcCCKOff = true; /* not available on pre AR9003 */
1582 aniState->cycleCount = 0;