aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/ath/ath10k/wmi.c
diff options
context:
space:
mode:
authorMichal Kazior <michal.kazior@tieto.com>2014-01-23 05:38:26 -0500
committerKalle Valo <kvalo@qca.qualcomm.com>2014-01-24 03:23:06 -0500
commitc2df44b39b31a730a89b13f7be90860d93d1f9d8 (patch)
treedfaead5c0b766dd055f02246591ad66442c516d7 /drivers/net/wireless/ath/ath10k/wmi.c
parentc930f744bdb0774ccf7c00e23637f54b8e71f0b6 (diff)
ath10k: implement AP CSA
Most channel switching logic has been implemented already so this patch is pretty small. The patch makes use of mac80211's vif->csa_active for AP CSA handling. Signed-off-by: Michal Kazior <michal.kazior@tieto.com> Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com>
Diffstat (limited to 'drivers/net/wireless/ath/ath10k/wmi.c')
-rw-r--r--drivers/net/wireless/ath/ath10k/wmi.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/drivers/net/wireless/ath/ath10k/wmi.c b/drivers/net/wireless/ath/ath10k/wmi.c
index f0969cd8350f..a1ec5d0fb0ef 100644
--- a/drivers/net/wireless/ath/ath10k/wmi.c
+++ b/drivers/net/wireless/ath/ath10k/wmi.c
@@ -1405,6 +1405,17 @@ static void ath10k_wmi_event_host_swba(struct ath10k *ar, struct sk_buff *skb)
1405 continue; 1405 continue;
1406 } 1406 }
1407 1407
1408 /* There are no completions for beacons so wait for next SWBA
1409 * before telling mac80211 to decrement CSA counter
1410 *
1411 * Once CSA counter is completed stop sending beacons until
1412 * actual channel switch is done */
1413 if (arvif->vif->csa_active &&
1414 ieee80211_csa_is_complete(arvif->vif)) {
1415 ieee80211_csa_finish(arvif->vif);
1416 continue;
1417 }
1418
1408 bcn = ieee80211_beacon_get(ar->hw, arvif->vif); 1419 bcn = ieee80211_beacon_get(ar->hw, arvif->vif);
1409 if (!bcn) { 1420 if (!bcn) {
1410 ath10k_warn("could not get mac80211 beacon\n"); 1421 ath10k_warn("could not get mac80211 beacon\n");