Commit ae12d0dd authored by Andrew Morton's avatar Andrew Morton Committed by Linus Torvalds

[PATCH] wanmain.c build fix

net/wanrouter/wanmain.c:195: error: parse error before "static"
parent 7e1940ec
......@@ -191,8 +191,8 @@ static void __exit wanrouter_cleanup (void)
* slap it first in directory and make it module_init(). The only reason
* for subsys_initcall() here is that net goes after drivers (why, BTW?)
*/
subsys_initcall(wanrouter_init)
module_exit(wanrouter_cleanup)
subsys_initcall(wanrouter_init);
module_exit(wanrouter_cleanup);
/*
* Kernel APIs
......
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