blob: fe5b24f234c6f90114a646eb958b4e07eedc8157 [file] [log] [blame]
developer8f0d89b2023-07-28 07:16:44 +08001From 6c3be50d5ede7f58bb6225bed563d14d815dd54f Mon Sep 17 00:00:00 2001
developer4a24b5f2023-04-12 16:06:02 +08002From: MeiChia Chiu <meichia.chiu@mediatek.com>
3Date: Wed, 12 Apr 2023 15:53:42 +0800
developer8f0d89b2023-07-28 07:16:44 +08004Subject: [PATCH 2/8] wifi: mt76: mt7915: fix the beamformer issue
developer4a24b5f2023-04-12 16:06:02 +08005
6without this patch, when ap sets the tx stream number to 2,
7ap doesn't send any beamform packets.
8
9Signed-off-by: MeiChia Chiu <MeiChia.Chiu@mediatek.com>
10---
11 mt7915/mcu.c | 4 ++--
12 1 file changed, 2 insertions(+), 2 deletions(-)
13
14diff --git a/mt7915/mcu.c b/mt7915/mcu.c
developerc1571f92023-07-04 22:11:24 +080015index 79d2354..f2ffa6c 100644
developer4a24b5f2023-04-12 16:06:02 +080016--- a/mt7915/mcu.c
17+++ b/mt7915/mcu.c
developerc1571f92023-07-04 22:11:24 +080018@@ -1015,13 +1015,13 @@ mt7915_is_ebf_supported(struct mt7915_phy *phy, struct ieee80211_vif *vif,
developer4a24b5f2023-04-12 16:06:02 +080019 struct ieee80211_sta *sta, bool bfee)
20 {
developerc1571f92023-07-04 22:11:24 +080021 struct mt7915_vif *mvif = (struct mt7915_vif *)vif->drv_priv;
developer4a24b5f2023-04-12 16:06:02 +080022- int tx_ant = hweight8(phy->mt76->chainmask) - 1;
23+ int sts = hweight16(phy->mt76->chainmask);
24
25 if (vif->type != NL80211_IFTYPE_STATION &&
26 vif->type != NL80211_IFTYPE_AP)
27 return false;
28
29- if (!bfee && tx_ant < 2)
30+ if (!bfee && sts < 2)
31 return false;
32
33 if (sta->deflink.he_cap.has_he) {
34--
developer5bea7322023-04-13 18:50:55 +0800352.18.0
developer4a24b5f2023-04-12 16:06:02 +080036