mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-07-23 07:12:09 +00:00
mac80211: Use proper smps_mode enum in sta opmode event
SMPS_MODE change value notified via nl80211 contains mac80211 specific value(ieee80211_smps_mode) and user space application will not know those values. This patch add support to map the mac80211 enum value to nl80211_smps_mode which will be understood by the userspace application. Signed-off-by: Tamizh chelvam <tamizhr@codeaurora.org> Signed-off-by: Johannes Berg <johannes.berg@intel.com>
This commit is contained in:
parent
5e78abd075
commit
57566b2003
3 changed files with 19 additions and 1 deletions
|
@ -2883,7 +2883,8 @@ ieee80211_rx_h_action(struct ieee80211_rx_data *rx)
|
|||
if (rx->sta->sta.smps_mode == smps_mode)
|
||||
goto handled;
|
||||
rx->sta->sta.smps_mode = smps_mode;
|
||||
sta_opmode.smps_mode = smps_mode;
|
||||
sta_opmode.smps_mode =
|
||||
ieee80211_smps_mode_to_smps_mode(smps_mode);
|
||||
sta_opmode.changed = STA_OPMODE_SMPS_MODE_CHANGED;
|
||||
|
||||
sband = rx->local->hw.wiphy->bands[status->band];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue