diff mbox series

hostapd: Allow HT40 on 5 GHz channels 173 and 177

Message ID 20210423153118.26127-1-cedric.izoard@ceva-dsp.com
State Accepted
Headers show
Series hostapd: Allow HT40 on 5 GHz channels 173 and 177 | expand

Commit Message

Cedric Izoard April 23, 2021, 3:31 p.m. UTC
802.11AX draft7.0 add channel 177 into global operating class 125 and
consequently channel 173 in global operating class 126 (HT40+) and
channel 177 in global operating class 127 (HT40-).

Signed-off-by: Cedric Izoard <cedric.izoard@ceva-dsp.com>
---
 src/common/hw_features_common.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Jouni Malinen Aug. 26, 2021, 1:38 p.m. UTC | #1
On Fri, Apr 23, 2021 at 05:31:18PM +0200, Cedric Izoard wrote:
> 802.11AX draft7.0 add channel 177 into global operating class 125 and
> consequently channel 173 in global operating class 126 (HT40+) and
> channel 177 in global operating class 127 (HT40-).

Thanks, applied.
diff mbox series

Patch

diff --git a/src/common/hw_features_common.c b/src/common/hw_features_common.c
index ad2aebfef..c4876fd41 100644
--- a/src/common/hw_features_common.c
+++ b/src/common/hw_features_common.c
@@ -114,7 +114,7 @@  int allowed_ht40_channel_pair(enum hostapd_hw_mode mode,
 {
 	int ok, first;
 	int allowed[] = { 36, 44, 52, 60, 100, 108, 116, 124, 132, 140,
-			  149, 157, 165, 184, 192 };
+			  149, 157, 165, 173, 184, 192 };
 	size_t k;
 	int ht40_plus, pri_chan, sec_chan;