Lines Matching defs:limit
50 struct ath_nf_limits *limit;
53 limit = &ah->nf_2g;
55 limit = &ah->nf_5g;
57 return limit;
92 struct ath_nf_limits *limit;
99 limit = ath9k_hw_get_nf_limits(ah, ah->curchan);
122 if (h[i].privNF > limit->max) {
127 i, h[i].privNF, limit->max,
133 * Normally we limit the average noise floor by the
136 * we bypass this limit here in order to better deal
140 h[i].privNF = limit->max;
374 struct ath_nf_limits *limit;
378 limit = &ah->nf_2g;
380 limit = &ah->nf_5g;
390 if (nf[i] > limit->max) {
393 i, nf[i], limit->max);
394 nf[i] = limit->max;
395 } else if (nf[i] < limit->min) {
398 i, nf[i], limit->min);
399 nf[i] = limit->nominal;