diff options
author | Luis R. Rodriguez <lrodriguez@atheros.com> | 2009-01-07 20:43:32 -0500 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2009-01-29 15:59:58 -0500 |
commit | 560e28e14f69ad3440a6e8c283dcfd37e1e41c2d (patch) | |
tree | a2340710c9d723c7c64b2fd04aed82b2206b1931 /net/wireless/reg.c | |
parent | 4be8c3873e0b88397866d3ede578503e188f9ad2 (diff) |
cfg80211: call reg_notifier() once
We are calling the reg_notifier() callback per band, this is
not necessary, just call it once.
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 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/wireless/reg.c b/net/wireless/reg.c index bc494cef2102..0f93d4526f37 100644 --- a/net/wireless/reg.c +++ b/net/wireless/reg.c | |||
@@ -947,9 +947,9 @@ void wiphy_update_regulatory(struct wiphy *wiphy, enum reg_set_by setby) | |||
947 | for (band = 0; band < IEEE80211_NUM_BANDS; band++) { | 947 | for (band = 0; band < IEEE80211_NUM_BANDS; band++) { |
948 | if (wiphy->bands[band]) | 948 | if (wiphy->bands[band]) |
949 | handle_band(wiphy, band); | 949 | handle_band(wiphy, band); |
950 | if (wiphy->reg_notifier) | ||
951 | wiphy->reg_notifier(wiphy, setby); | ||
952 | } | 950 | } |
951 | if (wiphy->reg_notifier) | ||
952 | wiphy->reg_notifier(wiphy, setby); | ||
953 | } | 953 | } |
954 | 954 | ||
955 | /* Return value which can be used by ignore_request() to indicate | 955 | /* Return value which can be used by ignore_request() to indicate |