aboutsummaryrefslogtreecommitdiffstats
path: root/include/net/mac80211.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/net/mac80211.h')
-rw-r--r--include/net/mac80211.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/net/mac80211.h b/include/net/mac80211.h
index 656442c6b1c3..9672a04c4f7b 100644
--- a/include/net/mac80211.h
+++ b/include/net/mac80211.h
@@ -407,11 +407,13 @@ struct ieee80211_rx_status {
407 * @IEEE80211_CONF_SHORT_SLOT_TIME: use 802.11g short slot time 407 * @IEEE80211_CONF_SHORT_SLOT_TIME: use 802.11g short slot time
408 * @IEEE80211_CONF_RADIOTAP: add radiotap header at receive time (if supported) 408 * @IEEE80211_CONF_RADIOTAP: add radiotap header at receive time (if supported)
409 * @IEEE80211_CONF_SUPPORT_HT_MODE: use 802.11n HT capabilities (if supported) 409 * @IEEE80211_CONF_SUPPORT_HT_MODE: use 802.11n HT capabilities (if supported)
410 * @IEEE80211_CONF_PS: Enable 802.11 power save mode
410 */ 411 */
411enum ieee80211_conf_flags { 412enum ieee80211_conf_flags {
412 IEEE80211_CONF_SHORT_SLOT_TIME = (1<<0), 413 IEEE80211_CONF_SHORT_SLOT_TIME = (1<<0),
413 IEEE80211_CONF_RADIOTAP = (1<<1), 414 IEEE80211_CONF_RADIOTAP = (1<<1),
414 IEEE80211_CONF_SUPPORT_HT_MODE = (1<<2), 415 IEEE80211_CONF_SUPPORT_HT_MODE = (1<<2),
416 IEEE80211_CONF_PS = (1<<3),
415}; 417};
416 418
417/** 419/**