Commit f8fffc7e authored by Johannes Berg's avatar Johannes Berg

mac80211_hwsim: move module_init/exit

These should be with the functions so move
the module_init/exit statements.
Signed-off-by: default avatarJohannes Berg <johannes.berg@intel.com>
parent ad0ed62f
......@@ -2056,7 +2056,7 @@ static int __init init_mac80211_hwsim(void)
mac80211_hwsim_free();
return err;
}
module_init(init_mac80211_hwsim);
static void __exit exit_mac80211_hwsim(void)
{
......@@ -2067,7 +2067,4 @@ static void __exit exit_mac80211_hwsim(void)
mac80211_hwsim_free();
unregister_netdev(hwsim_mon);
}
module_init(init_mac80211_hwsim);
module_exit(exit_mac80211_hwsim);
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