Searched defs:cur_bb_spur (Results 1 - 3 of 3) sorted by relevance

/drivers/net/wireless/ath/ath9k/
H A Dar9002_phy.c195 int cur_bb_spur; local
205 cur_bb_spur = ah->eep_ops->get_spur_channel(ah, i, is2GHz);
207 if (AR_NO_SPUR == cur_bb_spur)
211 cur_bb_spur = (cur_bb_spur / 10) + AR_BASE_FREQ_2GHZ;
213 cur_bb_spur = (cur_bb_spur / 10) + AR_BASE_FREQ_5GHZ;
215 cur_bb_spur = cur_bb_spur - freq;
218 if ((cur_bb_spur >
[all...]
H A Dar5008_phy.c275 int cur_bb_spur; local
282 cur_bb_spur = ah->eep_ops->get_spur_channel(ah, i, is2GHz);
283 if (AR_NO_SPUR == cur_bb_spur)
285 cur_bb_spur = cur_bb_spur - (chan->channel * 10);
286 if ((cur_bb_spur > -95) && (cur_bb_spur < 95)) {
287 bb_spur = cur_bb_spur;
H A Dar9003_phy.c177 int cur_bb_spur, negative = 0, cck_spur_freq; local
216 cur_bb_spur = ath9k_hw_fbin2freq(spur_fbin_ptr[i],
219 cur_bb_spur = spur_freq[i];
221 cur_bb_spur -= synth_freq;
222 if (cur_bb_spur < 0) {
224 cur_bb_spur = -cur_bb_spur;
226 if (cur_bb_spur < range) {
227 cck_spur_freq = (int)((cur_bb_spur << 19) / 11);

Completed in 334 milliseconds