linux 2.6.16.38 w/ vs2.0.3-rc1
[linux-2.6.git] / net / bridge / netfilter / ebt_arpreply.c
index d19fc4b..b934de9 100644 (file)
@@ -82,16 +82,16 @@ static struct ebt_target reply_target =
        .me             = THIS_MODULE,
 };
 
-static int __init ebt_arpreply_init(void)
+static int __init init(void)
 {
        return ebt_register_target(&reply_target);
 }
 
-static void __exit ebt_arpreply_fini(void)
+static void __exit fini(void)
 {
        ebt_unregister_target(&reply_target);
 }
 
-module_init(ebt_arpreply_init);
-module_exit(ebt_arpreply_fini);
+module_init(init);
+module_exit(fini);
 MODULE_LICENSE("GPL");