aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Documentation/DocBook/80211.tmpl11
-rw-r--r--include/net/cfg80211.h11
-rw-r--r--net/mac80211/sta_info.h3
3 files changed, 18 insertions, 7 deletions
diff --git a/Documentation/DocBook/80211.tmpl b/Documentation/DocBook/80211.tmpl
index ebe89694cf81..49267ea97568 100644
--- a/Documentation/DocBook/80211.tmpl
+++ b/Documentation/DocBook/80211.tmpl
@@ -127,12 +127,11 @@
127!Finclude/net/cfg80211.h cfg80211_ibss_params 127!Finclude/net/cfg80211.h cfg80211_ibss_params
128!Finclude/net/cfg80211.h cfg80211_connect_params 128!Finclude/net/cfg80211.h cfg80211_connect_params
129!Finclude/net/cfg80211.h cfg80211_pmksa 129!Finclude/net/cfg80211.h cfg80211_pmksa
130!Finclude/net/cfg80211.h cfg80211_send_rx_auth 130!Finclude/net/cfg80211.h cfg80211_rx_mlme_mgmt
131!Finclude/net/cfg80211.h cfg80211_send_auth_timeout 131!Finclude/net/cfg80211.h cfg80211_auth_timeout
132!Finclude/net/cfg80211.h cfg80211_send_rx_assoc 132!Finclude/net/cfg80211.h cfg80211_rx_assoc_resp
133!Finclude/net/cfg80211.h cfg80211_send_assoc_timeout 133!Finclude/net/cfg80211.h cfg80211_assoc_timeout
134!Finclude/net/cfg80211.h cfg80211_send_deauth 134!Finclude/net/cfg80211.h cfg80211_tx_mlme_mgmt
135!Finclude/net/cfg80211.h cfg80211_send_disassoc
136!Finclude/net/cfg80211.h cfg80211_ibss_joined 135!Finclude/net/cfg80211.h cfg80211_ibss_joined
137!Finclude/net/cfg80211.h cfg80211_connect_result 136!Finclude/net/cfg80211.h cfg80211_connect_result
138!Finclude/net/cfg80211.h cfg80211_roamed 137!Finclude/net/cfg80211.h cfg80211_roamed
diff --git a/include/net/cfg80211.h b/include/net/cfg80211.h
index 5b208064f1bd..855c76ccff38 100644
--- a/include/net/cfg80211.h
+++ b/include/net/cfg80211.h
@@ -2853,7 +2853,7 @@ struct cfg80211_cached_keys;
2853 * @current_bss: (private) Used by the internal configuration code 2853 * @current_bss: (private) Used by the internal configuration code
2854 * @channel: (private) Used by the internal configuration code to track 2854 * @channel: (private) Used by the internal configuration code to track
2855 * the user-set AP, monitor and WDS channel 2855 * the user-set AP, monitor and WDS channel
2856 * @preset_chan: (private) Used by the internal configuration code to 2856 * @preset_chandef: (private) Used by the internal configuration code to
2857 * track the channel to be used for AP later 2857 * track the channel to be used for AP later
2858 * @bssid: (private) Used by the internal configuration code 2858 * @bssid: (private) Used by the internal configuration code
2859 * @ssid: (private) Used by the internal configuration code 2859 * @ssid: (private) Used by the internal configuration code
@@ -2875,6 +2875,15 @@ struct cfg80211_cached_keys;
2875 * @p2p_started: true if this is a P2P Device that has been started 2875 * @p2p_started: true if this is a P2P Device that has been started
2876 * @cac_started: true if DFS channel availability check has been started 2876 * @cac_started: true if DFS channel availability check has been started
2877 * @cac_start_time: timestamp (jiffies) when the dfs state was entered. 2877 * @cac_start_time: timestamp (jiffies) when the dfs state was entered.
2878 * @ps: powersave mode is enabled
2879 * @ps_timeout: dynamic powersave timeout
2880 * @ap_unexpected_nlportid: (private) netlink port ID of application
2881 * registered for unexpected class 3 frames (AP mode)
2882 * @conn: (private) cfg80211 software SME connection state machine data
2883 * @connect_keys: (private) keys to set after connection is established
2884 * @ibss_fixed: (private) IBSS is using fixed BSSID
2885 * @event_list: (private) list for internal event processing
2886 * @event_lock: (private) lock for event list
2878 */ 2887 */
2879struct wireless_dev { 2888struct wireless_dev {
2880 struct wiphy *wiphy; 2889 struct wiphy *wiphy;
diff --git a/net/mac80211/sta_info.h b/net/mac80211/sta_info.h
index 41c28b977f7c..bd12fc54266c 100644
--- a/net/mac80211/sta_info.h
+++ b/net/mac80211/sta_info.h
@@ -297,6 +297,9 @@ struct sta_ampdu_mlme {
297 * @rcu_head: RCU head used for freeing this station struct 297 * @rcu_head: RCU head used for freeing this station struct
298 * @cur_max_bandwidth: maximum bandwidth to use for TX to the station, 298 * @cur_max_bandwidth: maximum bandwidth to use for TX to the station,
299 * taken from HT/VHT capabilities or VHT operating mode notification 299 * taken from HT/VHT capabilities or VHT operating mode notification
300 * @chains: chains ever used for RX from this station
301 * @chain_signal_last: last signal (per chain)
302 * @chain_signal_avg: signal average (per chain)
300 */ 303 */
301struct sta_info { 304struct sta_info {
302 /* General information, mostly static */ 305 /* General information, mostly static */