Home
last modified time | relevance | path

Searched refs:sta_opmode (Results 1 – 5 of 5) sorted by relevance

/linux/net/mac80211/
H A Dvht.c652 struct sta_opmode_info sta_opmode = {}; in __ieee80211_vht_handle_opmode() local
671 sta_opmode.rx_nss = link_sta->pub->rx_nss; in __ieee80211_vht_handle_opmode()
672 sta_opmode.changed |= STA_OPMODE_N_SS_CHANGED; in __ieee80211_vht_handle_opmode()
705 sta_opmode.bw = ieee80211_sta_rx_bw_to_chan_width(link_sta); in __ieee80211_vht_handle_opmode()
707 sta_opmode.changed |= STA_OPMODE_MAX_BW_CHANGED; in __ieee80211_vht_handle_opmode()
710 if (sta_opmode.changed) in __ieee80211_vht_handle_opmode()
712 &sta_opmode, GFP_KERNEL); in __ieee80211_vht_handle_opmode()
H A Dht.c615 struct sta_opmode_info sta_opmode = {}; in ieee80211_ht_handle_chanwidth_notif() local
633 sta_opmode.bw = in ieee80211_ht_handle_chanwidth_notif()
635 sta_opmode.changed = STA_OPMODE_MAX_BW_CHANGED; in ieee80211_ht_handle_chanwidth_notif()
641 &sta_opmode, in ieee80211_ht_handle_chanwidth_notif()
H A Drx.c3543 struct sta_opmode_info sta_opmode = {}; in ieee80211_rx_h_action() local
3568 sta_opmode.smps_mode = in ieee80211_rx_h_action()
3570 sta_opmode.changed = STA_OPMODE_SMPS_MODE_CHANGED; in ieee80211_rx_h_action()
3578 &sta_opmode, in ieee80211_rx_h_action()
/linux/net/wireless/
H A Dnl80211.c20544 struct sta_opmode_info *sta_opmode, in cfg80211_sta_opmode_change_notify() argument
20574 if ((sta_opmode->changed & STA_OPMODE_SMPS_MODE_CHANGED) && in cfg80211_sta_opmode_change_notify()
20575 nla_put_u8(msg, NL80211_ATTR_SMPS_MODE, sta_opmode->smps_mode)) in cfg80211_sta_opmode_change_notify()
20578 if ((sta_opmode->changed & STA_OPMODE_MAX_BW_CHANGED) && in cfg80211_sta_opmode_change_notify()
20579 nla_put_u32(msg, NL80211_ATTR_CHANNEL_WIDTH, sta_opmode->bw)) in cfg80211_sta_opmode_change_notify()
20582 if ((sta_opmode->changed & STA_OPMODE_N_SS_CHANGED) && in cfg80211_sta_opmode_change_notify()
20583 nla_put_u8(msg, NL80211_ATTR_NSS, sta_opmode->rx_nss)) in cfg80211_sta_opmode_change_notify()
/linux/include/net/
H A Dcfg80211.h8998 struct sta_opmode_info *sta_opmode,