From 42cc12cc844343d65c00c4f7f2e56513d00cc021 Mon Sep 17 00:00:00 2001 From: kimocoder Date: Wed, 13 Nov 2019 16:48:06 +0100 Subject: [PATCH] Fixed a missing channel function in regdom --- os_dep/linux/wifi_regd.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/os_dep/linux/wifi_regd.c b/os_dep/linux/wifi_regd.c index 4c10f84..26b83cd 100644 --- a/os_dep/linux/wifi_regd.c +++ b/os_dep/linux/wifi_regd.c @@ -77,6 +77,7 @@ static const struct ieee80211_regdomain rtw_regdom_rd = { .reg_rules = { RTW_2GHZ_CH01_11, RTW_2GHZ_CH12_13, + RTW_2GHZ_CH14, RTW_5GHZ_5150_5850, } }; @@ -86,6 +87,7 @@ static const struct ieee80211_regdomain rtw_regdom_11 = { .alpha2 = "99", .reg_rules = { RTW_2GHZ_CH01_11, + RTW_2GHZ_CH12_13 } };