diff options
Diffstat (limited to 'net/wireless/reg.c')
-rw-r--r-- | net/wireless/reg.c | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/net/wireless/reg.c b/net/wireless/reg.c index eb8b8ed16155..ead9dccb5475 100644 --- a/net/wireless/reg.c +++ b/net/wireless/reg.c | |||
@@ -2135,11 +2135,14 @@ int regulatory_init(void) | |||
2135 | /* | 2135 | /* |
2136 | * The old code still requests for a new regdomain and if | 2136 | * The old code still requests for a new regdomain and if |
2137 | * you have CRDA you get it updated, otherwise you get | 2137 | * you have CRDA you get it updated, otherwise you get |
2138 | * stuck with the static values. We ignore "EU" code as | 2138 | * stuck with the static values. Since "EU" is not a valid |
2139 | * that is not a valid ISO / IEC 3166 alpha2 | 2139 | * ISO / IEC 3166 alpha2 code we can't expect userpace to |
2140 | * give us a regulatory domain for it. We need last_request | ||
2141 | * iniitalized though so lets just send a request which we | ||
2142 | * know will be ignored... this crap will be removed once | ||
2143 | * OLD_REG dies. | ||
2140 | */ | 2144 | */ |
2141 | if (ieee80211_regdom[0] != 'E' || ieee80211_regdom[1] != 'U') | 2145 | err = regulatory_hint_core(ieee80211_regdom); |
2142 | err = regulatory_hint_core(ieee80211_regdom); | ||
2143 | #else | 2146 | #else |
2144 | cfg80211_regdomain = cfg80211_world_regdom; | 2147 | cfg80211_regdomain = cfg80211_world_regdom; |
2145 | 2148 | ||