git: 1832eb102e10 - main - net80211: add missing 80Mhz and 160Mhz channel ranges
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 07 Jan 2025 18:13:49 UTC
The branch main has been updated by bz:
URL: https://cgit.FreeBSD.org/src/commit/?id=1832eb102e10c7f2891c032ecf7b265b75d3cd50
commit 1832eb102e10c7f2891c032ecf7b265b75d3cd50
Author: Bjoern A. Zeeb <bz@FreeBSD.org>
AuthorDate: 2025-01-04 08:02:19 +0000
Commit: Bjoern A. Zeeb <bz@FreeBSD.org>
CommitDate: 2025-01-07 18:13:00 +0000
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
---
sys/net80211/ieee80211.c | 2 ++
1 file changed, 2 insertions(+)
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 }
};