developer | f9b0021 | 2023-07-31 12:27:06 +0800 | [diff] [blame] | 1 | From d35d35ed5575bb31d614a7dee8afd24bc2b1fcfa Mon Sep 17 00:00:00 2001 |
developer | 8b64f1a | 2023-05-02 10:31:58 +0800 | [diff] [blame] | 2 | From: StanleyYP Wang <StanleyYP.Wang@mediatek.com> |
| 3 | Date: Thu, 30 Mar 2023 17:03:03 +0800 |
developer | f9b0021 | 2023-07-31 12:27:06 +0800 | [diff] [blame] | 4 | Subject: [PATCH 30/35] hostapd: mtk: Fix setting wrong seg0 index for 5G |
developer | 8b64f1a | 2023-05-02 10:31:58 +0800 | [diff] [blame] | 5 | center chan 159 BW40 |
| 6 | |
| 7 | Signed-off-by: StanleyYP Wang <StanleyYP.Wang@mediatek.com> |
| 8 | --- |
| 9 | src/ap/ap_config.h | 3 ++- |
| 10 | 1 file changed, 2 insertions(+), 1 deletion(-) |
| 11 | |
| 12 | diff --git a/src/ap/ap_config.h b/src/ap/ap_config.h |
| 13 | index 51476b8..ae22a2f 100644 |
| 14 | --- a/src/ap/ap_config.h |
| 15 | +++ b/src/ap/ap_config.h |
| 16 | @@ -1275,7 +1275,8 @@ hostapd_set_oper_centr_freq_seg0_idx(struct hostapd_config *conf, |
| 17 | #ifdef CONFIG_IEEE80211BE |
| 18 | if (conf->ieee80211be) |
| 19 | conf->eht_oper_centr_freq_seg0_idx = oper_centr_freq_seg0_idx; |
| 20 | - if (center_idx_to_bw_6ghz(oper_centr_freq_seg0_idx) == 4) |
| 21 | + if (is_6ghz_op_class(conf->op_class) && |
| 22 | + center_idx_to_bw_6ghz(oper_centr_freq_seg0_idx) == 4) |
| 23 | oper_centr_freq_seg0_idx += |
| 24 | conf->channel > oper_centr_freq_seg0_idx ? 16 : -16; |
| 25 | #endif /* CONFIG_IEEE80211BE */ |
| 26 | -- |
| 27 | 2.18.0 |
| 28 | |