Home
last modified time | relevance | path

Searched refs:delba (Results 1 – 3 of 3) sorted by relevance

/linux/drivers/net/wireless/marvell/mwifiex/
H A D11n_rxreorder.c768 struct host_cmd_ds_11n_delba delba; in mwifiex_11n_ba_stream_timeout() local
770 memset(&delba, 0, sizeof(struct host_cmd_ds_11n_delba)); in mwifiex_11n_ba_stream_timeout()
771 memcpy(delba.peer_mac_addr, event->peer_mac_addr, ETH_ALEN); in mwifiex_11n_ba_stream_timeout()
773 delba.del_ba_param_set |= in mwifiex_11n_ba_stream_timeout()
775 delba.del_ba_param_set |= cpu_to_le16( in mwifiex_11n_ba_stream_timeout()
777 delba.reason_code = cpu_to_le16(WLAN_REASON_QSTA_TIMEOUT); in mwifiex_11n_ba_stream_timeout()
778 mwifiex_send_cmd(priv, HostCmd_CMD_11N_DELBA, 0, 0, &delba, false); in mwifiex_11n_ba_stream_timeout()
H A D11n.c641 struct host_cmd_ds_11n_delba delba; in mwifiex_send_delba() local
645 memset(&delba, 0, sizeof(delba)); in mwifiex_send_delba()
654 delba.del_ba_param_set = cpu_to_le16(del_ba_param_set); in mwifiex_send_delba()
655 memcpy(&delba.peer_mac_addr, peer_mac, ETH_ALEN); in mwifiex_send_delba()
659 HostCmd_ACT_GEN_SET, 0, &delba, false); in mwifiex_send_delba()
/linux/net/mac80211/
H A Drx.c3791 if (len < IEEE80211_MIN_ACTION_SIZE(delba)) in ieee80211_rx_h_action()