aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/net/mac80211.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/include/net/mac80211.h b/include/net/mac80211.h
index 3a3c26f647b..871ed1de736 100644
--- a/include/net/mac80211.h
+++ b/include/net/mac80211.h
@@ -2548,6 +2548,18 @@ void ieee80211_cqm_rssi_notify(struct ieee80211_vif *vif,
2548 */ 2548 */
2549void ieee80211_chswitch_done(struct ieee80211_vif *vif, bool success); 2549void ieee80211_chswitch_done(struct ieee80211_vif *vif, bool success);
2550 2550
2551/**
2552 * ieee80211_request_smps - request SM PS transition
2553 * @vif: &struct ieee80211_vif pointer from the add_interface callback.
2554 * @mode: new SM PS mode
2555 *
2556 * This allows the driver to request an SM PS transition in managed
2557 * mode. This is useful when the driver has more information than
2558 * the stack about possible interference, for example by bluetooth.
2559 */
2560void ieee80211_request_smps(struct ieee80211_vif *vif,
2561 enum ieee80211_smps_mode smps_mode);
2562
2551/* Rate control API */ 2563/* Rate control API */
2552 2564
2553/** 2565/**