]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/blobdiff - net/ipv4/netfilter/ipt_ECN.c
[NETFILTER]: Rename init functions.
[mirror_ubuntu-hirsute-kernel.git] / net / ipv4 / netfilter / ipt_ECN.c
index b9b80f90c84ee5e35bd7ddc3129ad3daa003b6d7..4adf5c9d34f52b964e84b9d183a313929554918f 100644 (file)
@@ -151,15 +151,15 @@ static struct ipt_target ipt_ecn_reg = {
        .me             = THIS_MODULE,
 };
 
-static int __init init(void)
+static int __init ipt_ecn_init(void)
 {
        return ipt_register_target(&ipt_ecn_reg);
 }
 
-static void __exit fini(void)
+static void __exit ipt_ecn_fini(void)
 {
        ipt_unregister_target(&ipt_ecn_reg);
 }
 
-module_init(init);
-module_exit(fini);
+module_init(ipt_ecn_init);
+module_exit(ipt_ecn_fini);