aboutsummaryrefslogtreecommitdiffstats
path: root/net/mac80211/mlme.c
diff options
context:
space:
mode:
authorJohn W. Linville <linville@tuxdriver.com>2014-11-19 15:38:48 -0500
committerJohn W. Linville <linville@tuxdriver.com>2014-11-19 15:38:48 -0500
commitab1f5a532c9d33b49b039660c5ecbc0ab53e7133 (patch)
treea1c1d820f2280535978632c5935462efcf5a4c7f /net/mac80211/mlme.c
parentf48ecb19bc0443a4272dd0934e7bee4480610df9 (diff)
parent4e6ce4dc7ce71d0886908d55129d5d6482a27ff9 (diff)
Merge commit '4e6ce4dc7ce71d0886908d55129d5d6482a27ff9' of git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless
Diffstat (limited to 'net/mac80211/mlme.c')
-rw-r--r--net/mac80211/mlme.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/net/mac80211/mlme.c b/net/mac80211/mlme.c
index 213a420704a6..0d166e766dad 100644
--- a/net/mac80211/mlme.c
+++ b/net/mac80211/mlme.c
@@ -1117,7 +1117,7 @@ ieee80211_sta_process_chanswitch(struct ieee80211_sub_if_data *sdata,
1117 1117
1118 current_band = cbss->channel->band; 1118 current_band = cbss->channel->band;
1119 memset(&csa_ie, 0, sizeof(csa_ie)); 1119 memset(&csa_ie, 0, sizeof(csa_ie));
1120 res = ieee80211_parse_ch_switch_ie(sdata, elems, beacon, current_band, 1120 res = ieee80211_parse_ch_switch_ie(sdata, elems, current_band,
1121 ifmgd->flags, 1121 ifmgd->flags,
1122 ifmgd->associated->bssid, &csa_ie); 1122 ifmgd->associated->bssid, &csa_ie);
1123 if (res < 0) 1123 if (res < 0)
@@ -1216,7 +1216,8 @@ ieee80211_sta_process_chanswitch(struct ieee80211_sub_if_data *sdata,
1216 ieee80211_queue_work(&local->hw, &ifmgd->chswitch_work); 1216 ieee80211_queue_work(&local->hw, &ifmgd->chswitch_work);
1217 else 1217 else
1218 mod_timer(&ifmgd->chswitch_timer, 1218 mod_timer(&ifmgd->chswitch_timer,
1219 TU_TO_EXP_TIME(csa_ie.count * cbss->beacon_interval)); 1219 TU_TO_EXP_TIME((csa_ie.count - 1) *
1220 cbss->beacon_interval));
1220} 1221}
1221 1222
1222static bool 1223static bool