mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-04-16 14:23:38 +00:00
32 lines
1.2 KiB
Diff
32 lines
1.2 KiB
Diff
From 096b625fab8f9d88d9b436288a64b70080219d4b Mon Sep 17 00:00:00 2001
|
|
From: Lavanya Suresh <lavaks@codeaurora.org>
|
|
Date: Wed, 17 Feb 2021 11:45:45 +0200
|
|
Subject: ath11k: Fix sounding dimension config in HE cap
|
|
|
|
Number of Sounding dimensions config received from firmware for
|
|
bandwidth above 80MHz is cleared, and proper value is not set again.
|
|
So not resetting it to accept the config from firmware.
|
|
|
|
Tested-on: IPQ8074 hw2.0 AHB WLAN.HK.2.4.0.1-01689-QCAHKSWPL_SILICONZ-1
|
|
|
|
Signed-off-by: Lavanya Suresh <lavaks@codeaurora.org>
|
|
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
|
|
Link: https://lore.kernel.org/r/1613460136-7170-1-git-send-email-lavaks@codeaurora.org
|
|
---
|
|
drivers/net/wireless/ath/ath11k/mac.c | 2 --
|
|
1 file changed, 2 deletions(-)
|
|
|
|
(limited to 'drivers/net/wireless/ath/ath11k')
|
|
|
|
--- a/drivers/net/wireless/ath/ath11k/mac.c
|
|
+++ b/drivers/net/wireless/ath/ath11k/mac.c
|
|
@@ -3744,8 +3744,6 @@ static int ath11k_mac_copy_he_cap(struct
|
|
|
|
he_cap_elem->phy_cap_info[5] &=
|
|
~IEEE80211_HE_PHY_CAP5_BEAMFORMEE_NUM_SND_DIM_UNDER_80MHZ_MASK;
|
|
- he_cap_elem->phy_cap_info[5] &=
|
|
- ~IEEE80211_HE_PHY_CAP5_BEAMFORMEE_NUM_SND_DIM_ABOVE_80MHZ_MASK;
|
|
he_cap_elem->phy_cap_info[5] |= ar->num_tx_chains - 1;
|
|
|
|
switch (i) {
|