aboutsummaryrefslogtreecommitdiffstats
path: root/net/wireless
diff options
context:
space:
mode:
authorLuis R. Rodriguez <lrodriguez@atheros.com>2008-11-12 17:21:59 -0500
committerJohn W. Linville <linville@tuxdriver.com>2008-11-25 16:41:24 -0500
commita01ddafd43f7d53a65ef053eb80a4dee58839c1f (patch)
tree972cc8004dc126d4a7e1039d36a39e098e5e823d /net/wireless
parentb8295acdc323e6e383ec822fc1e95edeb9148513 (diff)
cfg80211: expect different rd in cfg80211 when intersecting
When intersecting it is possible that set_regdom() was called with a regulatory domain which we'll only use as an aid to build a final regulatory domain. Signed-off-by: Luis R. Rodriguez <lrodriguez@atheros.com> Acked-by: Johannes Berg <johannes@sipsolutions.net> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net/wireless')
-rw-r--r--net/wireless/reg.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/net/wireless/reg.c b/net/wireless/reg.c
index 845e2d326632..f062b8b7000a 100644
--- a/net/wireless/reg.c
+++ b/net/wireless/reg.c
@@ -880,12 +880,13 @@ int set_regdom(const struct ieee80211_regdomain *rd)
880 } 880 }
881 881
882 /* This would make this whole thing pointless */ 882 /* This would make this whole thing pointless */
883 BUG_ON(rd != cfg80211_regdomain); 883 if (!last_request->intersect)
884 BUG_ON(rd != cfg80211_regdomain);
884 885
885 /* update all wiphys now with the new established regulatory domain */ 886 /* update all wiphys now with the new established regulatory domain */
886 update_all_wiphy_regulatory(last_request->initiator); 887 update_all_wiphy_regulatory(last_request->initiator);
887 888
888 print_regdomain(rd); 889 print_regdomain(cfg80211_regdomain);
889 890
890 return r; 891 return r;
891} 892}