aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBjoern A. Zeeb <bz@FreeBSD.org>2025-01-04 08:02:19 +0000
committerBjoern A. Zeeb <bz@FreeBSD.org>2025-01-07 18:13:00 +0000
commit1832eb102e10c7f2891c032ecf7b265b75d3cd50 (patch)
tree793f082912c2a6739b6da398ac250eb55432cafd
parent42410c6d682c4e00ce6147f99b51a55f6f3fe075 (diff)
net80211: add missing 80Mhz and 160Mhz channel ranges
We have two arrays, one for 80Mhz and one for 160Mhz. Both were lacking frequency ranges for more possibly available configurations (the other bits of what is valid are for regdomain to set right). Sponsored by: The FreeBSD Foundation MFC after: 3 days Fixes: 67f4aa3878efa, 04e7bb08a5750 Reviewed by: adrian Differential Revision: https://reviews.freebsd.org/D48357
-rw-r--r--sys/net80211/ieee80211.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/net80211/ieee80211.c b/sys/net80211/ieee80211.c
index ccb7efaa4df5..49d313e5077d 100644
--- a/sys/net80211/ieee80211.c
+++ b/sys/net80211/ieee80211.c
@@ -1196,12 +1196,14 @@ struct vht_chan_range vht80_chan_ranges[] = {
{ 5570, 5650 },
{ 5650, 5730 },
{ 5735, 5815 },
+ { 5815, 5895 },
{ 0, 0 }
};
struct vht_chan_range vht160_chan_ranges[] = {
{ 5170, 5330 },
{ 5490, 5650 },
+ { 5735, 5895 },
{ 0, 0 }
};