Home | History | Annotate | Download | only in drivers

Lines Matching full:rates

5196 		struct nlattr *rates;
5200 rates = nla_nest_start(msg, NL80211_ATTR_SCAN_SUPP_RATES);
5201 if (rates == NULL)
5205 * Remove 2.4 GHz rates 1, 2, 5.5, 11 Mbps from supported rates
5206 * by masking out everything else apart from the OFDM rates 6,
5207 * 9, 12, 18, 24, 36, 48, 54 Mbps from non-MCS rates. All 5 GHz
5208 * rates are left enabled.
5212 nla_nest_end(msg, rates);
6599 mode->rates = os_calloc(mode->num_rates, sizeof(int));
6600 if (!mode->rates)
6611 mode->rates[idx] = nla_get_u32(
6717 if (modes[m].rates[i] > 200) {
6764 mode->rates = os_malloc(4 * sizeof(int));
6765 if (mode->rates == NULL) {
6772 if (mode11g->rates[i] != 10 && mode11g->rates[i] != 20 &&
6773 mode11g->rates[i] != 55 && mode11g->rates[i] != 110)
6775 mode->rates[mode->num_rates] = mode11g->rates[i];
6783 os_free(mode->rates);
6785 return modes; /* No 802.11b rates */
7308 u8 rates[NL80211_MAX_SUPP_RATES];
7314 rates[rates_len++] = basic_rates[i] / 5;
7316 NLA_PUT(msg, NL80211_ATTR_BSS_BASIC_RATES, rates_len, rates);
7707 wpa_hexdump(MSG_DEBUG, " * supported rates", params->supp_rates,
10840 * Disable 2 GHz rates 1, 2, 5.5, 11 Mbps by masking out everything
10842 * rates. All 5 GHz rates are left enabled.
10858 rates failed: ret=%d "