2008-06-29 09:11:25

by Tomas Winkler

[permalink] [raw]
Subject: [PATCH 1/1] cfg80211: adding NONE regdomain

From: Ester Kummer <[email protected]>

This patch adds an option to enable all the channels by adding a
value of "NONE" to ieee80211_regdom module param. This is useful
for NICs that rely on EEPROM regulatory enforcement and for testing

Signed-off-by: Esti Kummer <[email protected]>
Signed-off-by: Tomas Winkler <[email protected]>
---
net/wireless/reg.c | 9 +++++++++
1 files changed, 9 insertions(+), 0 deletions(-)

diff --git a/net/wireless/reg.c b/net/wireless/reg.c
index 855bff4..140b931 100644
--- a/net/wireless/reg.c
+++ b/net/wireless/reg.c
@@ -97,6 +97,14 @@ static const struct ieee80211_channel_range ieee80211_EU_channels[] = {
IEEE80211_CHAN_RADAR),
};

+static const struct ieee80211_channel_range ieee80211_NONE_channels[] = {
+ /* IEEE 802.11b/g, channels 1..14 */
+ RANGE_PWR(2412, 2484, 0xFF, 0xFF, 0),
+ /* IEEE 802.11a, channels 36..165 */
+ RANGE_PWR(5180, 6000, 0xFF, 0xFF, 0),
+};
+
+
#define REGDOM(_code) \
{ \
.code = __stringify(_code), \
@@ -108,6 +116,7 @@ static const struct ieee80211_regdomain ieee80211_regdoms[] = {
REGDOM(US),
REGDOM(JP),
REGDOM(EU),
+ REGDOM(NONE),
};


--
1.5.4.1

---------------------------------------------------------------------
Intel Israel (74) Limited

This e-mail and any attachments may contain confidential material for
the sole use of the intended recipient(s). Any review or distribution
by others is strictly prohibited. If you are not the intended
recipient, please contact the sender and delete all copies.



2008-06-29 09:18:24

by drago01

[permalink] [raw]
Subject: Re: [PATCH 1/1] cfg80211: adding NONE regdomain

On Sun, Jun 29, 2008 at 11:11 AM, Tomas Winkler <[email protected]> wrote:
> From: Ester Kummer <[email protected]>
>..
> Signed-off-by: Esti Kummer <[email protected]>

seems wrong here ;)