blob: 82ca87f7deab7da3db3abd381a4628a5bd705454 [file] [log] [blame]
developer4a24b5f2023-04-12 16:06:02 +08001From 647f71719101d8b623b1a7e8d7ba05845e8649aa Mon Sep 17 00:00:00 2001
2From: MeiChia Chiu <meichia.chiu@mediatek.com>
3Date: Wed, 12 Apr 2023 15:53:42 +0800
4Subject: [PATCH] wifi: mt76: mt7915: fix the beamformer issue
5
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
15index 03ae3bc..927d932 100644
16--- a/mt7915/mcu.c
17+++ b/mt7915/mcu.c
18@@ -1008,13 +1008,13 @@ mt7915_is_ebf_supported(struct mt7915_phy *phy, struct ieee80211_vif *vif,
19 struct ieee80211_sta *sta, bool bfee)
20 {
21 struct mt7915_vif *mvif = (struct mt7915_vif *)vif->drv_priv;
22- 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--
352.39.0
36