wcn36xx: Add VHT rates to wcn36xx_update_allowed_rates()
authorBryan O'Donoghue <bryan.odonoghue@linaro.org>
Mon, 21 Sep 2020 13:21:20 +0000 (16:21 +0300)
committerKalle Valo <kvalo@codeaurora.org>
Tue, 22 Sep 2020 07:38:26 +0000 (10:38 +0300)
This commit adds VHT rates to the wcn36xx_update_allowed_rates() routine.
Thus allowing the driver to latch the declared rates and transmit them to
the firmware in the same way as other 80211.n rates are.

Signed-off-by: Bryan O'Donoghue <bryan.odonoghue@linaro.org>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
Link: https://lore.kernel.org/r/20200910150822.2179261-4-bryan.odonoghue@linaro.org
drivers/net/wireless/ath/wcn36xx/main.c

index 36cfa70..720d3fa 100644 (file)
@@ -766,6 +766,14 @@ static void wcn36xx_update_allowed_rates(struct ieee80211_sta *sta,
                       sta->ht_cap.mcs.rx_mask,
                       sizeof(sta->ht_cap.mcs.rx_mask));
        }
+
+       if (sta->vht_cap.vht_supported) {
+               sta_priv->supported_rates.op_rate_mode = STA_11ac;
+               sta_priv->supported_rates.vht_rx_mcs_map =
+                               sta->vht_cap.vht_mcs.rx_mcs_map;
+               sta_priv->supported_rates.vht_tx_mcs_map =
+                               sta->vht_cap.vht_mcs.tx_mcs_map;
+       }
 }
 void wcn36xx_set_default_rates(struct wcn36xx_hal_supported_rates *rates)
 {