diff options
author | Luis R. Rodriguez <lrodriguez@atheros.com> | 2009-01-22 18:05:50 -0500 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2009-01-29 16:01:17 -0500 |
commit | d46e5b1d0c617a2a46353812d7f02115c17b5e72 (patch) | |
tree | 7774dd44cad9a9b9a73f4830c119271af17ee9b0 /net/wireless/reg.c | |
parent | 2a44f911d8bac3e6c97a25cc612e4324dfbdfdc4 (diff) |
cfg80211: move check for ignore_reg_update() on wiphy_update_regulatory()
This ensures that the initial REGDOM_SET_BY_CORE upon wiphy registration
respects the wiphy->custom_regulatory setting. Without this and if OLD_REG
is disabled (which will be default soon as we remove it) the
wiphy->custom_regulatory is simply ignored.
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/reg.c')
-rw-r--r-- | net/wireless/reg.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/net/wireless/reg.c b/net/wireless/reg.c index 5db02a3d9c02..81acb07f1d44 100644 --- a/net/wireless/reg.c +++ b/net/wireless/reg.c | |||
@@ -937,13 +937,15 @@ static void update_all_wiphy_regulatory(enum reg_set_by setby) | |||
937 | struct cfg80211_registered_device *drv; | 937 | struct cfg80211_registered_device *drv; |
938 | 938 | ||
939 | list_for_each_entry(drv, &cfg80211_drv_list, list) | 939 | list_for_each_entry(drv, &cfg80211_drv_list, list) |
940 | if (!ignore_reg_update(&drv->wiphy, setby)) | 940 | wiphy_update_regulatory(&drv->wiphy, setby); |
941 | wiphy_update_regulatory(&drv->wiphy, setby); | ||
942 | } | 941 | } |
943 | 942 | ||
944 | void wiphy_update_regulatory(struct wiphy *wiphy, enum reg_set_by setby) | 943 | void wiphy_update_regulatory(struct wiphy *wiphy, enum reg_set_by setby) |
945 | { | 944 | { |
946 | enum ieee80211_band band; | 945 | enum ieee80211_band band; |
946 | |||
947 | if (ignore_reg_update(wiphy, setby)) | ||
948 | return; | ||
947 | for (band = 0; band < IEEE80211_NUM_BANDS; band++) { | 949 | for (band = 0; band < IEEE80211_NUM_BANDS; band++) { |
948 | if (wiphy->bands[band]) | 950 | if (wiphy->bands[band]) |
949 | handle_band(wiphy, band); | 951 | handle_band(wiphy, band); |