blob: 8764aa7765d55f9ba82fa387052babdae2afe6fb [file] [log] [blame]
developer617abbd2024-04-23 14:50:01 +08001From a6db9becf71712107500adf239b89f4f8523d3f3 Mon Sep 17 00:00:00 2001
2From: Evelyn Tsai <evelyn.tsai@mediatek.com>
3Date: Wed, 10 May 2023 13:11:34 +0800
4Subject: [PATCH 067/104] mtk: hostapd: update eht operation element
5
6---
7 src/ap/ieee802_11_eht.c | 6 +++---
8 1 file changed, 3 insertions(+), 3 deletions(-)
9
10diff --git a/src/ap/ieee802_11_eht.c b/src/ap/ieee802_11_eht.c
11index 353a4116e..e13662a59 100644
12--- a/src/ap/ieee802_11_eht.c
13+++ b/src/ap/ieee802_11_eht.c
14@@ -237,9 +237,9 @@ u8 * hostapd_eid_eht_operation(struct hostapd_data *hapd, u8 *eid)
15
16 /* TODO: Fill in appropriate EHT-MCS max Nss information */
17 oper->basic_eht_mcs_nss_set[0] = 0x11;
18- oper->basic_eht_mcs_nss_set[1] = 0x00;
19- oper->basic_eht_mcs_nss_set[2] = 0x00;
20- oper->basic_eht_mcs_nss_set[3] = 0x00;
21+ oper->basic_eht_mcs_nss_set[1] = 0x11;
22+ oper->basic_eht_mcs_nss_set[2] = 0x11;
23+ oper->basic_eht_mcs_nss_set[3] = 0x11;
24
25 if (!eht_oper_info_present)
26 return pos + elen;
27--
282.39.2
29