blob: 5e522ef854457451fb72954cff9de5a4d6acfa4a [file] [log] [blame]
From 9fbf0e20ece646083ad41f9a59aef3e1f295d00d Mon Sep 17 00:00:00 2001
From: mtk27745 <rex.lu@mediatek.com>
Date: Fri, 17 Nov 2023 11:01:04 +0800
Subject: [PATCH 006/223] mtk: mt76: mt7996: Fix TGax HE-4.51.1_24G fail
According to sta capability to decide to enable/disable wed pao when create ppe entry.
without this patch, TGax HE-4.51.1_24G will test fail
Change-Id: Ic51473fcc24757887f0f9f81a31b6f01dee2c845
Signed-off-by: mtk27745 <rex.lu@mediatek.com>
---
mt7996/main.c | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/mt7996/main.c b/mt7996/main.c
index 334cc8c5..f8c07b34 100644
--- a/mt7996/main.c
+++ b/mt7996/main.c
@@ -1444,7 +1444,12 @@ mt7996_net_fill_forward_path(struct ieee80211_hw *hw,
path->mtk_wdma.queue = 0;
path->mtk_wdma.wcid = msta->wcid.idx;
- path->mtk_wdma.amsdu = mtk_wed_is_amsdu_supported(wed);
+ if (ieee80211_hw_check(hw, SUPPORTS_AMSDU_IN_AMPDU) &&
+ mtk_wed_is_amsdu_supported(wed))
+ path->mtk_wdma.amsdu = msta->wcid.amsdu;
+ else
+ path->mtk_wdma.amsdu = 0;
+
ctx->dev = NULL;
return 0;
--
2.45.2