Lines Matching defs:vht_cap
87 struct ieee80211_vht_cap *vht_cap, u8 bands)
92 vht_cap->vht_cap_info =
95 vht_cap->vht_cap_info =
100 struct ieee80211_vht_cap *vht_cap, u8 bands)
107 mwifiex_fill_vht_cap_info(priv, vht_cap, bands);
111 mcs_map_resp = le16_to_cpu(vht_cap->supp_mcs.rx_mcs_map);
127 vht_cap->supp_mcs.rx_mcs_map = cpu_to_le16(mcs_map_result);
130 vht_cap->supp_mcs.rx_highest = cpu_to_le16(tmp);
134 mcs_map_resp = le16_to_cpu(vht_cap->supp_mcs.tx_mcs_map);
149 vht_cap->supp_mcs.tx_mcs_map = cpu_to_le16(mcs_map_result);
152 vht_cap->supp_mcs.tx_highest = cpu_to_le16(tmp);
161 struct mwifiex_ie_types_vhtcap *vht_cap;
177 vht_cap = (struct mwifiex_ie_types_vhtcap *)*buffer;
178 memset(vht_cap, 0, sizeof(*vht_cap));
179 vht_cap->header.type = cpu_to_le16(WLAN_EID_VHT_CAPABILITY);
180 vht_cap->header.len =
182 memcpy((u8 *)vht_cap + sizeof(struct mwifiex_ie_types_header),
184 le16_to_cpu(vht_cap->header.len));
186 mwifiex_fill_vht_cap_tlv(priv, &vht_cap->vht_cap,
188 *buffer += sizeof(*vht_cap);
189 ret_len += sizeof(*vht_cap);