Searched defs:tmp_rate (Results 1 - 6 of 6) sorted by relevance

/drivers/clk/
H A Dclk-composite.c69 long tmp_rate, best_rate = 0; local
97 tmp_rate = rate_ops->round_rate(rate_hw, rate,
99 if (tmp_rate < 0)
102 rate_diff = abs(rate - tmp_rate);
109 best_rate = tmp_rate;
/drivers/clk/at91/
H A Dclk-programmable.c65 unsigned long tmp_rate; local
76 tmp_rate = parent_rate >> shift;
77 if (tmp_rate <= rate)
81 if (tmp_rate > rate)
84 if (best_rate < 0 || (rate - tmp_rate) < (rate - best_rate)) {
85 best_rate = tmp_rate;
/drivers/clk/sunxi/
H A Dclk-sun6i-ar100.c59 unsigned long tmp_rate; local
101 tmp_rate = (parent_rate >> shift) / div;
102 if (!*best_parent_clk || tmp_rate > best_rate) {
105 best_rate = tmp_rate;
/drivers/staging/rtl8192e/
H A Drtllib_softmac_wx.c246 u32 tmp_rate = 0; local
248 tmp_rate = TxCountToDataRate(ieee,
250 wrqu->bitrate.value = tmp_rate * 500000;
/drivers/staging/rtl8192u/ieee80211/
H A Dieee80211_softmac_wx.c235 u32 tmp_rate; local
236 tmp_rate = TxCountToDataRate(ieee, ieee->softmac_stats.CurrentShowTxate);
238 wrqu->bitrate.value = tmp_rate * 500000;
/drivers/net/wireless/rtlwifi/rtl8821ae/
H A Dhw.c3526 u8 i, j, tmp_rate; local
3530 tmp_rate = (le16_to_cpu(vht_rate) >> i) & 3;
3532 switch (tmp_rate) {

Completed in 1559 milliseconds