Lines Matching full:rates

83 /* AC rates */
181 * This function maps an index in supported rates table into
226 /* 11n non-HT rates */ in mwifiex_index_to_acs_data_rate()
235 /* This function maps an index in supported rates table into
281 * This function returns the current active data rates.
285 u32 mwifiex_get_active_data_rates(struct mwifiex_private *priv, u8 *rates) in mwifiex_get_active_data_rates() argument
288 return mwifiex_get_supported_rates(priv, rates); in mwifiex_get_active_data_rates()
290 return mwifiex_copy_rates(rates, 0, in mwifiex_get_active_data_rates()
375 /* This function gets the supported data rates from bitmask inside
379 u8 *rates, u8 radio_type) in mwifiex_get_rates_from_cfg80211() argument
391 rate_mask = request->rates[NL80211_BAND_5GHZ]; in mwifiex_get_rates_from_cfg80211()
396 rate_mask = request->rates[NL80211_BAND_2GHZ]; in mwifiex_get_rates_from_cfg80211()
403 rates[num_rates++] = (u8)(sband->bitrates[i].bitrate / 5); in mwifiex_get_rates_from_cfg80211()
409 /* This function gets the supported data rates. The function works in
411 * data rates.
413 u32 mwifiex_get_supported_rates(struct mwifiex_private *priv, u8 *rates) in mwifiex_get_supported_rates() argument
425 k = mwifiex_copy_rates(rates, k, supported_rates_b, in mwifiex_get_supported_rates()
433 k = mwifiex_copy_rates(rates, k, supported_rates_g, in mwifiex_get_supported_rates()
445 k = mwifiex_copy_rates(rates, k, supported_rates_bg, in mwifiex_get_supported_rates()
453 k = mwifiex_copy_rates(rates, k, supported_rates_a, in mwifiex_get_supported_rates()
464 k = mwifiex_copy_rates(rates, k, supported_rates_a, in mwifiex_get_supported_rates()
471 k = mwifiex_copy_rates(rates, k, supported_rates_n, in mwifiex_get_supported_rates()
480 k = mwifiex_copy_rates(rates, k, adhoc_rates_b, in mwifiex_get_supported_rates()
486 k = mwifiex_copy_rates(rates, k, adhoc_rates_g, in mwifiex_get_supported_rates()
492 k = mwifiex_copy_rates(rates, k, adhoc_rates_bg, in mwifiex_get_supported_rates()
498 k = mwifiex_copy_rates(rates, k, adhoc_rates_a, in mwifiex_get_supported_rates()