diff options
author | Ilan Peer <ilan.peer@intel.com> | 2013-06-10 03:34:14 -0400 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2013-06-13 05:58:47 -0400 |
commit | 38745c7414c0d9a0567c5b4a4e056c6b7f807179 (patch) | |
tree | b085857e9550968865748606086bfd11b45965d1 /net/mac80211 | |
parent | 817cee767523769cbc5ac94e439cde0c21752cbc (diff) |
mac80211: Fix VHT bandwidth change event
Signed-off-by: Ilan Peer <ilan.peer@intel.com>
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'net/mac80211')
-rw-r--r-- | net/mac80211/vht.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/mac80211/vht.c b/net/mac80211/vht.c index 171344d4eb7c..97c289414e32 100644 --- a/net/mac80211/vht.c +++ b/net/mac80211/vht.c | |||
@@ -396,7 +396,7 @@ void ieee80211_vht_handle_opmode(struct ieee80211_sub_if_data *sdata, | |||
396 | new_bw = ieee80211_sta_cur_vht_bw(sta); | 396 | new_bw = ieee80211_sta_cur_vht_bw(sta); |
397 | if (new_bw != sta->sta.bandwidth) { | 397 | if (new_bw != sta->sta.bandwidth) { |
398 | sta->sta.bandwidth = new_bw; | 398 | sta->sta.bandwidth = new_bw; |
399 | changed |= IEEE80211_RC_NSS_CHANGED; | 399 | changed |= IEEE80211_RC_BW_CHANGED; |
400 | } | 400 | } |
401 | 401 | ||
402 | change: | 402 | change: |