• Home
  • Raw
  • Download

Lines Matching refs:vht_cap

99 			  struct ieee80211_vht_cap *vht_cap, u8 bands)  in mwifiex_fill_vht_cap_info()  argument
104 vht_cap->vht_cap_info = in mwifiex_fill_vht_cap_info()
107 vht_cap->vht_cap_info = in mwifiex_fill_vht_cap_info()
112 struct ieee80211_vht_cap *vht_cap, u8 bands) in mwifiex_fill_vht_cap_tlv() argument
119 mwifiex_fill_vht_cap_info(priv, vht_cap, bands); in mwifiex_fill_vht_cap_tlv()
123 mcs_map_resp = le16_to_cpu(vht_cap->supp_mcs.rx_mcs_map); in mwifiex_fill_vht_cap_tlv()
139 vht_cap->supp_mcs.rx_mcs_map = cpu_to_le16(mcs_map_result); in mwifiex_fill_vht_cap_tlv()
142 vht_cap->supp_mcs.rx_highest = cpu_to_le16(tmp); in mwifiex_fill_vht_cap_tlv()
146 mcs_map_resp = le16_to_cpu(vht_cap->supp_mcs.tx_mcs_map); in mwifiex_fill_vht_cap_tlv()
161 vht_cap->supp_mcs.tx_mcs_map = cpu_to_le16(mcs_map_result); in mwifiex_fill_vht_cap_tlv()
164 vht_cap->supp_mcs.tx_highest = cpu_to_le16(tmp); in mwifiex_fill_vht_cap_tlv()
173 struct mwifiex_ie_types_vhtcap *vht_cap; in mwifiex_cmd_append_11ac_tlv() local
189 vht_cap = (struct mwifiex_ie_types_vhtcap *)*buffer; in mwifiex_cmd_append_11ac_tlv()
190 memset(vht_cap, 0, sizeof(*vht_cap)); in mwifiex_cmd_append_11ac_tlv()
191 vht_cap->header.type = cpu_to_le16(WLAN_EID_VHT_CAPABILITY); in mwifiex_cmd_append_11ac_tlv()
192 vht_cap->header.len = in mwifiex_cmd_append_11ac_tlv()
194 memcpy((u8 *)vht_cap + sizeof(struct mwifiex_ie_types_header), in mwifiex_cmd_append_11ac_tlv()
196 le16_to_cpu(vht_cap->header.len)); in mwifiex_cmd_append_11ac_tlv()
198 mwifiex_fill_vht_cap_tlv(priv, &vht_cap->vht_cap, in mwifiex_cmd_append_11ac_tlv()
200 *buffer += sizeof(*vht_cap); in mwifiex_cmd_append_11ac_tlv()
201 ret_len += sizeof(*vht_cap); in mwifiex_cmd_append_11ac_tlv()