Message ID | 1559648213-16186-1-git-send-email-mkenna@codeaurora.org (mailing list archive) |
---|---|
State | Accepted |
Commit | 703350682ff7493a10072f5db1ea933a278aac2d |
Delegated to: | Kalle Valo |
Headers | show |
Series | ath11k: Fix nss value to get proper rate_code for peer fixed rate | expand |
Maharaja Kennadyrajan <mkenna@codeaurora.org> wrote: > The rate_code is not proper when the peer fixed rate is > set by the user via the set bitrate command. > The rate_code needs the nss values as {0, 1, 2, 3}. > Hence fixing the nss value in this patch. > > Signed-off-by: Maharaja Kennadyrajan <mkenna@codeaurora.org> Patch applied to ath.git, thanks. 703350682ff7 ath11k: Fix nss value to get proper rate_code for peer fixed rate
diff --git a/drivers/net/wireless/ath/ath11k/mac.c b/drivers/net/wireless/ath/ath11k/mac.c index cb0de8e2aa60..871f7da8ba21 100644 --- a/drivers/net/wireless/ath/ath11k/mac.c +++ b/drivers/net/wireless/ath/ath11k/mac.c @@ -2300,7 +2300,7 @@ ath11k_mac_set_peer_vht_fixed_rate(struct ath11k_vif *arvif, "Setting Fixed VHT Rate for peer %pM. Device will not switch to any other selected rates", sta->addr); - rate_code = ATH11K_HW_RATE_CODE(vht_rate, nss, + rate_code = ATH11K_HW_RATE_CODE(vht_rate, nss - 1, WMI_RATE_PREAMBLE_VHT); ret = ath11k_wmi_set_peer_param(ar, sta->addr, arvif->vdev_id,
The rate_code is not proper when the peer fixed rate is set by the user via the set bitrate command. The rate_code needs the nss values as {0, 1, 2, 3}. Hence fixing the nss value in this patch. Signed-off-by: Maharaja Kennadyrajan <mkenna@codeaurora.org> --- drivers/net/wireless/ath/ath11k/mac.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)