Lines Matching full:rates
95 /* AC rates */
193 * This function maps an index in supported rates table into
238 /* 11n non-HT rates */ in mwifiex_index_to_acs_data_rate()
247 /* This function maps an index in supported rates table into
293 * This function returns the current active data rates.
297 u32 mwifiex_get_active_data_rates(struct mwifiex_private *priv, u8 *rates) in mwifiex_get_active_data_rates() argument
300 return mwifiex_get_supported_rates(priv, rates); in mwifiex_get_active_data_rates()
302 return mwifiex_copy_rates(rates, 0, in mwifiex_get_active_data_rates()
387 /* This function gets the supported data rates from bitmask inside
391 u8 *rates, u8 radio_type) in mwifiex_get_rates_from_cfg80211() argument
403 rate_mask = request->rates[NL80211_BAND_5GHZ]; in mwifiex_get_rates_from_cfg80211()
408 rate_mask = request->rates[NL80211_BAND_2GHZ]; in mwifiex_get_rates_from_cfg80211()
415 rates[num_rates++] = (u8)(sband->bitrates[i].bitrate / 5); in mwifiex_get_rates_from_cfg80211()
421 /* This function gets the supported data rates. The function works in
423 * data rates.
425 u32 mwifiex_get_supported_rates(struct mwifiex_private *priv, u8 *rates) in mwifiex_get_supported_rates() argument
437 k = mwifiex_copy_rates(rates, k, supported_rates_b, in mwifiex_get_supported_rates()
445 k = mwifiex_copy_rates(rates, k, supported_rates_g, in mwifiex_get_supported_rates()
457 k = mwifiex_copy_rates(rates, k, supported_rates_bg, in mwifiex_get_supported_rates()
465 k = mwifiex_copy_rates(rates, k, supported_rates_a, in mwifiex_get_supported_rates()
476 k = mwifiex_copy_rates(rates, k, supported_rates_a, in mwifiex_get_supported_rates()
483 k = mwifiex_copy_rates(rates, k, supported_rates_n, in mwifiex_get_supported_rates()
492 k = mwifiex_copy_rates(rates, k, adhoc_rates_b, in mwifiex_get_supported_rates()
498 k = mwifiex_copy_rates(rates, k, adhoc_rates_g, in mwifiex_get_supported_rates()
504 k = mwifiex_copy_rates(rates, k, adhoc_rates_bg, in mwifiex_get_supported_rates()
510 k = mwifiex_copy_rates(rates, k, adhoc_rates_a, in mwifiex_get_supported_rates()