[NETFILTER]: Rename init functions.
[deliverable/linux.git] / net / netfilter / xt_helper.c
index 101f0005e987556d50b2dfbfcdd92abb4fe1f2e7..799c2a43e3b900285e4b52270e862f6428d86cd9 100644 (file)
@@ -182,7 +182,7 @@ static struct xt_match helper6_match = {
        .me             = THIS_MODULE,
 };
 
-static int __init init(void)
+static int __init xt_helper_init(void)
 {
        int ret;
        need_conntrack();
@@ -198,12 +198,12 @@ static int __init init(void)
        return ret;
 }
 
-static void __exit fini(void)
+static void __exit xt_helper_fini(void)
 {
        xt_unregister_match(&helper_match);
        xt_unregister_match(&helper6_match);
 }
 
-module_init(init);
-module_exit(fini);
+module_init(xt_helper_init);
+module_exit(xt_helper_fini);
 
This page took 0.025616 seconds and 5 git commands to generate.