aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorJanusz Dziedzic <janusz.dziedzic@gmail.com>2013-03-21 10:47:56 -0400
committerJohannes Berg <johannes.berg@intel.com>2013-03-22 09:13:42 -0400
commit67baf66339f82b5ddef5731caedb1e6db496818d (patch)
tree828716f2f60aec07f8c912ce0de7f89a3494b34e /include
parent934457eeb0bbe9af1849d9201cb3fb81fd9fa4d0 (diff)
mac80211: add P2P NoA settings
Add P2P NoA settings for STA mode. Signed-off-by: Janusz Dziedzic <janusz.dziedzic@tieto.com> [fix docs] Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'include')
-rw-r--r--include/net/mac80211.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/include/net/mac80211.h b/include/net/mac80211.h
index dd73b8c6746b..9b536172e27e 100644
--- a/include/net/mac80211.h
+++ b/include/net/mac80211.h
@@ -330,8 +330,7 @@ enum ieee80211_rssi_event {
330 * @ssid_len: Length of SSID given in @ssid. 330 * @ssid_len: Length of SSID given in @ssid.
331 * @hidden_ssid: The SSID of the current vif is hidden. Only valid in AP-mode. 331 * @hidden_ssid: The SSID of the current vif is hidden. Only valid in AP-mode.
332 * @txpower: TX power in dBm 332 * @txpower: TX power in dBm
333 * @p2p_ctwindow: P2P CTWindow, only for P2P client interfaces 333 * @p2p_noa_attr: P2P NoA attribute for P2P powersave
334 * @p2p_oppps: P2P opportunistic PS is enabled
335 */ 334 */
336struct ieee80211_bss_conf { 335struct ieee80211_bss_conf {
337 const u8 *bssid; 336 const u8 *bssid;
@@ -365,8 +364,7 @@ struct ieee80211_bss_conf {
365 size_t ssid_len; 364 size_t ssid_len;
366 bool hidden_ssid; 365 bool hidden_ssid;
367 int txpower; 366 int txpower;
368 u8 p2p_ctwindow; 367 struct ieee80211_p2p_noa_attr p2p_noa_attr;
369 bool p2p_oppps;
370}; 368};
371 369
372/** 370/**