aboutsummaryrefslogtreecommitdiffstats
path: root/include/net
diff options
context:
space:
mode:
Diffstat (limited to 'include/net')
-rw-r--r--include/net/cfg80211.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/include/net/cfg80211.h b/include/net/cfg80211.h
index 74f4f85be32f..92cf1c2c30c9 100644
--- a/include/net/cfg80211.h
+++ b/include/net/cfg80211.h
@@ -497,6 +497,7 @@ struct station_parameters {
497 * @STATION_INFO_BSS_PARAM: @bss_param filled 497 * @STATION_INFO_BSS_PARAM: @bss_param filled
498 * @STATION_INFO_CONNECTED_TIME: @connected_time filled 498 * @STATION_INFO_CONNECTED_TIME: @connected_time filled
499 * @STATION_INFO_ASSOC_REQ_IES: @assoc_req_ies filled 499 * @STATION_INFO_ASSOC_REQ_IES: @assoc_req_ies filled
500 * @STATION_INFO_STA_FLAGS: @sta_flags filled
500 */ 501 */
501enum station_info_flags { 502enum station_info_flags {
502 STATION_INFO_INACTIVE_TIME = 1<<0, 503 STATION_INFO_INACTIVE_TIME = 1<<0,
@@ -516,7 +517,8 @@ enum station_info_flags {
516 STATION_INFO_RX_BITRATE = 1<<14, 517 STATION_INFO_RX_BITRATE = 1<<14,
517 STATION_INFO_BSS_PARAM = 1<<15, 518 STATION_INFO_BSS_PARAM = 1<<15,
518 STATION_INFO_CONNECTED_TIME = 1<<16, 519 STATION_INFO_CONNECTED_TIME = 1<<16,
519 STATION_INFO_ASSOC_REQ_IES = 1<<17 520 STATION_INFO_ASSOC_REQ_IES = 1<<17,
521 STATION_INFO_STA_FLAGS = 1<<18
520}; 522};
521 523
522/** 524/**
@@ -633,6 +635,7 @@ struct station_info {
633 u32 tx_failed; 635 u32 tx_failed;
634 u32 rx_dropped_misc; 636 u32 rx_dropped_misc;
635 struct sta_bss_parameters bss_param; 637 struct sta_bss_parameters bss_param;
638 struct nl80211_sta_flag_update sta_flags;
636 639
637 int generation; 640 int generation;
638 641