Commit 976cee5a authored by Maximilian Attems's avatar Maximilian Attems Committed by Linus Torvalds

[PATCH] janitor: mark __init/__exit static drivers/net/bsd_comp

Signed-off-by: default avatarMaximilian Attems <janitor@sternwelten.at>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 06a47cc0
...@@ -1160,7 +1160,7 @@ static struct compressor ppp_bsd_compress = { ...@@ -1160,7 +1160,7 @@ static struct compressor ppp_bsd_compress = {
* Module support routines * Module support routines
*************************************************************/ *************************************************************/
int __init bsdcomp_init(void) static int __init bsdcomp_init(void)
{ {
int answer = ppp_register_compressor(&ppp_bsd_compress); int answer = ppp_register_compressor(&ppp_bsd_compress);
if (answer == 0) if (answer == 0)
...@@ -1168,7 +1168,7 @@ int __init bsdcomp_init(void) ...@@ -1168,7 +1168,7 @@ int __init bsdcomp_init(void)
return answer; return answer;
} }
void __exit bsdcomp_cleanup(void) static void __exit bsdcomp_cleanup(void)
{ {
ppp_unregister_compressor(&ppp_bsd_compress); ppp_unregister_compressor(&ppp_bsd_compress);
} }
......
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