blob: cd5cc99252c27e5570e9ba1b8b557f410442cb40 [file] [log] [blame]
developer1d9da7d2023-04-15 12:45:34 +08001From 6303c0b54acc6fcfe126a17357a7895054c951a0 Mon Sep 17 00:00:00 2001
developerbd892782023-01-12 15:27:46 +08002From: MeiChia Chiu <meichia.chiu@mediatek.com>
3Date: Thu, 12 Jan 2023 15:15:42 +0800
developer1d9da7d2023-04-15 12:45:34 +08004Subject: [PATCH 1029/1032] wifi: mt76: mt7915: add support for he ldpc control
developerc04f5402023-02-03 09:22:26 +08005 from hostapd
developerbd892782023-01-12 15:27:46 +08006
7---
8 mt7915/mcu.c | 1 +
9 1 file changed, 1 insertion(+)
10
11diff --git a/mt7915/mcu.c b/mt7915/mcu.c
developer1d9da7d2023-04-15 12:45:34 +080012index ba25580..13b86ed 100644
developerbd892782023-01-12 15:27:46 +080013--- a/mt7915/mcu.c
14+++ b/mt7915/mcu.c
developerc9233442023-04-04 06:06:17 +080015@@ -1984,6 +1984,7 @@ mt7915_mcu_beacon_check_caps(struct mt7915_phy *phy, struct ieee80211_vif *vif,
developerbd892782023-01-12 15:27:46 +080016 he = (void *)(ie + 3);
17
18 vc->he_ldpc =
19+ HE_PHY(CAP1_LDPC_CODING_IN_PAYLOAD, he->phy_cap_info[1]) &&
20 HE_PHY(CAP1_LDPC_CODING_IN_PAYLOAD, pe->phy_cap_info[1]);
21 vc->he_su_ebfer =
22 HE_PHY(CAP3_SU_BEAMFORMER, he->phy_cap_info[3]) &&
23--
developer2324aa22023-04-12 11:30:15 +0800242.18.0
developerbd892782023-01-12 15:27:46 +080025