diff options
author | Luis R. Rodriguez <mcgrof@do-not-panic.com> | 2013-01-11 22:39:36 +0400 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2013-01-14 14:32:44 +0400 |
commit | 0c0280bd0ba410326eecdaeb1b936696eda6381d (patch) | |
tree | d7d2795b3418db1c5b9ffa971c7beeaa2245b0fe /drivers/net/wireless/rtlwifi/regd.h | |
parent | 55b183ad8635589ea731a31653de79a2626491c4 (diff) | |
download | linux-0c0280bd0ba410326eecdaeb1b936696eda6381d.tar.xz |
wireless: make the reg_notifier() void
The reg_notifier()'s return value need not be checked
as it is only supposed to do post regulatory work and
that should never fail. Any behaviour to regulatory
that needs to be considered before cfg80211 does work
to a driver should be specified by using the already
existing flags, the reg_notifier() just does post
processing should it find it needs to.
Also make lbs_reg_notifier static.
Signed-off-by: Luis R. Rodriguez <mcgrof@do-not-panic.com>
[move lbs_reg_notifier to not break compile]
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'drivers/net/wireless/rtlwifi/regd.h')
-rw-r--r-- | drivers/net/wireless/rtlwifi/regd.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/net/wireless/rtlwifi/regd.h b/drivers/net/wireless/rtlwifi/regd.h index 70ef2f418a44..4e1f4f00e6e9 100644 --- a/drivers/net/wireless/rtlwifi/regd.h +++ b/drivers/net/wireless/rtlwifi/regd.h @@ -55,7 +55,7 @@ enum country_code_type_t { }; int rtl_regd_init(struct ieee80211_hw *hw, - int (*reg_notifier) (struct wiphy *wiphy, - struct regulatory_request *request)); -int rtl_reg_notifier(struct wiphy *wiphy, struct regulatory_request *request); + void (*reg_notifier) (struct wiphy *wiphy, + struct regulatory_request *request)); +void rtl_reg_notifier(struct wiphy *wiphy, struct regulatory_request *request); #endif |