From: Michal Kazior Date: Sat, 24 Jan 2015 10:14:51 +0000 (+0200) Subject: ath10k: fix dtim period with beacon templates X-Git-Tag: v4.0-rc1~133^2~10^2^2~19 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=ba2479fe65025bc48d79f86bce74567016632c3a;p=karo-tx-linux.git ath10k: fix dtim period with beacon templates Firmware supporting beacon templates (i.e. wmi-tlv for qca6174) doesn't implicitly take dtim period from the template. Instead it requires vdev param to be set accordingly. This fixes dtim period being stuck at 3. Signed-off-by: Michal Kazior Signed-off-by: Kalle Valo --- diff --git a/drivers/net/wireless/ath/ath10k/mac.c b/drivers/net/wireless/ath/ath10k/mac.c index 9524bc59997f..99af537598bb 100644 --- a/drivers/net/wireless/ath/ath10k/mac.c +++ b/drivers/net/wireless/ath/ath10k/mac.c @@ -3435,7 +3435,7 @@ static void ath10k_bss_info_changed(struct ieee80211_hw *hw, arvif->vdev_id, ret); } - if (changed & BSS_CHANGED_BEACON_INFO) { + if (changed & (BSS_CHANGED_BEACON_INFO | BSS_CHANGED_BEACON)) { arvif->dtim_period = info->dtim_period; ath10k_dbg(ar, ATH10K_DBG_MAC,