blob: 3fede945edaf318b54f84a9309056375711818ca [file] [log] [blame]
developered7222c2023-04-14 07:19:52 +08001From 5dfa389b6b538b4bc909e1661a61c7e6b76c2fd1 Mon Sep 17 00:00:00 2001
developer2e487862022-10-04 11:16:07 +08002From: Howard Hsu <howard-yh.hsu@mediatek.com>
3Date: Tue, 4 Oct 2022 10:47:05 +0800
developered7222c2023-04-14 07:19:52 +08004Subject: [PATCH 10/17] mac80211: mtk: Set TWT Information Frame Disabled bit
developera09ec1d2022-11-26 11:00:33 +08005 as 1.
developer2e487862022-10-04 11:16:07 +08006
developera09ec1d2022-11-26 11:00:33 +08007This modification means that current implementation do not support twt information frame.
developer2e487862022-10-04 11:16:07 +08008---
9 net/mac80211/s1g.c | 1 +
10 1 file changed, 1 insertion(+)
11
12diff --git a/net/mac80211/s1g.c b/net/mac80211/s1g.c
developer77ffbda2022-12-16 04:36:08 +080013index 10b34bc..ecb37b9 100644
developer2e487862022-10-04 11:16:07 +080014--- a/net/mac80211/s1g.c
15+++ b/net/mac80211/s1g.c
16@@ -101,6 +101,7 @@ ieee80211_s1g_rx_twt_setup(struct ieee80211_sub_if_data *sdata,
17 struct ieee80211_twt_params *twt_agrt = (void *)twt->params;
18
19 twt_agrt->req_type &= cpu_to_le16(~IEEE80211_TWT_REQTYPE_REQUEST);
20+ twt->control |= IEEE80211_TWT_CONTROL_RX_DISABLED;
21
22 /* broadcast TWT not supported yet */
23 if (twt->control & IEEE80211_TWT_CONTROL_NEG_TYPE_BROADCAST) {
24--
developered7222c2023-04-14 07:19:52 +0800252.18.0
developer2e487862022-10-04 11:16:07 +080026