Commit 2fcc9f73 authored by Uwe Kleine-König's avatar Uwe Kleine-König Committed by John W. Linville

wireless: move regulatory_init to .init.text

regulatory_init is only called by cfg80211_init which is in .init.text,
too.
Signed-off-by: default avatarUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent f884e387
......@@ -2630,7 +2630,7 @@ void reg_device_remove(struct wiphy *wiphy)
mutex_unlock(&reg_mutex);
}
int regulatory_init(void)
int __init regulatory_init(void)
{
int err = 0;
......@@ -2676,7 +2676,7 @@ int regulatory_init(void)
return 0;
}
void regulatory_exit(void)
void /* __init_or_exit */ regulatory_exit(void)
{
struct regulatory_request *reg_request, *tmp;
struct reg_beacon *reg_beacon, *btmp;
......
......@@ -10,7 +10,7 @@ int regulatory_hint_user(const char *alpha2);
void reg_device_remove(struct wiphy *wiphy);
int regulatory_init(void);
int __init regulatory_init(void);
void regulatory_exit(void);
int set_regdom(const struct ieee80211_regdomain *rd);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment