Skip to content

Commit b100722

Browse files
Muna Sinadakvalo
authored andcommitted
wifi: ath11k: Remove disabling of 80+80 and 160 MHz
This is a regression fix for 80+80 and 160 MHz support bits being cleared, therefore not adverised. Remove disable of 80+80 and 160 MHz capability flags and assign valid center frequency 2 similar to VHT80_80. Fixes: 38dfe77 ("wifi: ath11k: push MU-MIMO params from hostapd to hardware") Reported-by: Robert Marko <robert.marko@sartura.hr> Tested-by: Robert Marko <robert.marko@sartura.hr> # IPQ8074 WLAN.HK.2.9.0.1-01385-QCAHKSWPL_SILICONZ-1 Link: https://bugzilla.kernel.org/show_bug.cgi?id=217299 Co-developed-by: P Praneesh <quic_ppranees@quicinc.com> Signed-off-by: P Praneesh <quic_ppranees@quicinc.com> Signed-off-by: Muna Sinada <quic_msinada@quicinc.com> Signed-off-by: Kalle Valo <quic_kvalo@quicinc.com> Link: https://lore.kernel.org/r/1681762947-13882-1-git-send-email-quic_msinada@quicinc.com
1 parent b956e31 commit b100722

2 files changed

Lines changed: 2 additions & 5 deletions

File tree

drivers/net/wireless/ath/ath11k/mac.c

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5585,10 +5585,6 @@ static int ath11k_mac_copy_he_cap(struct ath11k *ar,
55855585

55865586
he_cap_elem->mac_cap_info[1] &=
55875587
IEEE80211_HE_MAC_CAP1_TF_MAC_PAD_DUR_MASK;
5588-
he_cap_elem->phy_cap_info[0] &=
5589-
~IEEE80211_HE_PHY_CAP0_CHANNEL_WIDTH_SET_160MHZ_IN_5G;
5590-
he_cap_elem->phy_cap_info[0] &=
5591-
~IEEE80211_HE_PHY_CAP0_CHANNEL_WIDTH_SET_80PLUS80_MHZ_IN_5G;
55925588

55935589
he_cap_elem->phy_cap_info[5] &=
55945590
~IEEE80211_HE_PHY_CAP5_BEAMFORMEE_NUM_SND_DIM_UNDER_80MHZ_MASK;

drivers/net/wireless/ath/ath11k/wmi.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -871,7 +871,8 @@ static void ath11k_wmi_put_wmi_channel(struct wmi_channel *chan,
871871

872872
chan->band_center_freq2 = arg->channel.band_center_freq1;
873873

874-
} else if (arg->channel.mode == MODE_11AC_VHT80_80) {
874+
} else if ((arg->channel.mode == MODE_11AC_VHT80_80) ||
875+
(arg->channel.mode == MODE_11AX_HE80_80)) {
875876
chan->band_center_freq2 = arg->channel.band_center_freq2;
876877
} else {
877878
chan->band_center_freq2 = 0;

0 commit comments

Comments
 (0)