Add support for new 5 GHz channels 173 and 177

Add support for new channels 173 and 177 in the operating classes 125 to
130 as defined in draft IEEE P802.11ax/D8.0.

Signed-off-by: Sreeramya Soratkal <ssramya@codeaurora.org>
This commit is contained in:
Sreeramya Soratkal 2020-11-23 13:30:02 +05:30 committed by Jouni Malinen
parent 21fdb454df
commit 833cdbe97d
8 changed files with 63 additions and 48 deletions

View file

@ -1944,7 +1944,7 @@ try_2_4_or_5:
return 2407 + 5 * chan;
if (chan == 14)
return 2484;
if (chan >= 36 && chan <= 169)
if (chan >= 36 && chan <= 177)
return 5000 + 5 * chan;
return 0;