blob: 05b212108c57179aeb7fd9d9685742bfb125f893 [file] [log] [blame]
developerdfb50982023-09-11 13:34:36 +08001From ef5f744c72f2e6ec6b7d4ec1ce4f233470ff7689 Mon Sep 17 00:00:00 2001
2From: Michael-CY Lee <michael-cy.lee@mediatek.com>
3Date: Wed, 23 Aug 2023 17:44:50 +0800
4Subject: [PATCH 35/40] hostapd: mtk: update op_class when AP channel switching
5
6Signed-off-by: Michael Lee <michael-cy.lee@mediatek.com>
7---
8 src/ap/drv_callbacks.c | 5 ++++-
9 1 file changed, 4 insertions(+), 1 deletion(-)
10
11diff --git a/src/ap/drv_callbacks.c b/src/ap/drv_callbacks.c
12index c3fc419..1911f85 100644
13--- a/src/ap/drv_callbacks.c
14+++ b/src/ap/drv_callbacks.c
15@@ -873,7 +873,7 @@ void hostapd_event_ch_switch(struct hostapd_data *hapd, int freq, int ht,
16 {
17 #ifdef NEED_AP_MLME
18 int channel, chwidth, is_dfs0, is_dfs;
19- u8 seg0_idx = 0, seg1_idx = 0;
20+ u8 seg0_idx = 0, seg1_idx = 0, op_class, chan_no;
21 size_t i;
22
23 hostapd_logger(hapd, NULL, HOSTAPD_MODULE_IEEE80211,
24@@ -995,6 +995,9 @@ void hostapd_event_ch_switch(struct hostapd_data *hapd, int freq, int ht,
25 hapd->iconf->ht_capab &= ~HT_CAP_INFO_SUPP_CHANNEL_WIDTH_SET;
26
27 hapd->iconf->secondary_channel = offset;
28+ ieee80211_freq_to_channel_ext(freq, offset, chwidth,
29+ &op_class, &chan_no);
30+ hapd->iconf->op_class = op_class;
31 hostapd_set_oper_chwidth(hapd->iconf, chwidth);
32 hostapd_set_oper_centr_freq_seg0_idx(hapd->iconf, seg0_idx);
33 hostapd_set_oper_centr_freq_seg1_idx(hapd->iconf, seg1_idx);
34--
352.18.0
36