blob: 5d24464d7540b308eb1df2d18af92bb298d89d51 [file] [log] [blame]
developer1a173672023-12-21 14:49:33 +08001From 73aed7092e7da26eaf17b1e29bdb94222e073e94 Mon Sep 17 00:00:00 2001
2From: mtk27745 <rex.lu@mediatek.com>
3Date: Fri, 17 Nov 2023 11:01:04 +0800
4Subject: [PATCH 14/23] mtk: wifi: mt76: mt7996: Fix TGax HE-4.51.1_24G fail
5
6According to sta capability to decide to enable/disable wed pao when create ppe entry.
7without this patch, TGax HE-4.51.1_24G will test fail
8
9Signed-off-by: mtk27745 <rex.lu@mediatek.com>
10---
11 mt7996/main.c | 7 ++++++-
12 1 file changed, 6 insertions(+), 1 deletion(-)
13
14diff --git a/mt7996/main.c b/mt7996/main.c
15index 6e88420e..4db8899c 100644
16--- a/mt7996/main.c
17+++ b/mt7996/main.c
18@@ -1447,7 +1447,12 @@ mt7996_net_fill_forward_path(struct ieee80211_hw *hw,
19 path->mtk_wdma.queue = 0;
20 path->mtk_wdma.wcid = msta->wcid.idx;
21
22- path->mtk_wdma.amsdu = mtk_wed_is_amsdu_supported(wed);
23+ if (ieee80211_hw_check(hw, SUPPORTS_AMSDU_IN_AMPDU) &&
24+ mtk_wed_is_amsdu_supported(wed))
25+ path->mtk_wdma.amsdu = msta->wcid.amsdu;
26+ else
27+ path->mtk_wdma.amsdu = 0;
28+
29 ctx->dev = NULL;
30
31 return 0;
32--
332.18.0
34