• Home
  • Raw
  • Download

Lines Matching refs:beacon_ie

151 			     struct mwifiex_ie *beacon_ie, u16 *beacon_idx,  in mwifiex_update_uap_custom_ie()  argument
167 if (beacon_ie) { in mwifiex_update_uap_custom_ie()
169 le16_to_cpu(beacon_ie->ie_length); in mwifiex_update_uap_custom_ie()
170 memcpy(pos, beacon_ie, len); in mwifiex_update_uap_custom_ie()
192 if (beacon_ie && *beacon_idx == MWIFIEX_AUTO_IDX_MASK) { in mwifiex_update_uap_custom_ie()
195 len = sizeof(*beacon_ie) - IEEE_MAX_IE_SIZE + in mwifiex_update_uap_custom_ie()
196 le16_to_cpu(beacon_ie->ie_length); in mwifiex_update_uap_custom_ie()
257 struct mwifiex_ie *beacon_ie = NULL, *pr_ie = NULL, *ar_ie = NULL; in mwifiex_set_mgmt_beacon_data_ies() local
264 &beacon_ie, MGMT_MASK_BEACON, in mwifiex_set_mgmt_beacon_data_ies()
268 &beacon_ie, MGMT_MASK_BEACON, in mwifiex_set_mgmt_beacon_data_ies()
297 if (beacon_ie || pr_ie || ar_ie) { in mwifiex_set_mgmt_beacon_data_ies()
298 ret = mwifiex_update_uap_custom_ie(priv, beacon_ie, in mwifiex_set_mgmt_beacon_data_ies()
310 kfree(beacon_ie); in mwifiex_set_mgmt_beacon_data_ies()
377 struct mwifiex_ie *beacon_ie = NULL, *pr_ie = NULL; in mwifiex_del_mgmt_ies() local
400 beacon_ie = kmalloc(sizeof(struct mwifiex_ie), GFP_KERNEL); in mwifiex_del_mgmt_ies()
401 if (!beacon_ie) { in mwifiex_del_mgmt_ies()
405 beacon_ie->ie_index = cpu_to_le16(priv->beacon_idx); in mwifiex_del_mgmt_ies()
406 beacon_ie->mgmt_subtype_mask = cpu_to_le16(MWIFIEX_DELETE_MASK); in mwifiex_del_mgmt_ies()
407 beacon_ie->ie_length = 0; in mwifiex_del_mgmt_ies()
430 if (beacon_ie || pr_ie || ar_ie) in mwifiex_del_mgmt_ies()
432 beacon_ie, &priv->beacon_idx, in mwifiex_del_mgmt_ies()
437 kfree(beacon_ie); in mwifiex_del_mgmt_ies()