aboutsummaryrefslogtreecommitdiff
path: root/crypto/md4.c
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/md4.c')
-rw-r--r--crypto/md4.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/crypto/md4.c b/crypto/md4.c
index c1bc71bdc16..3c19aa0750f 100644
--- a/crypto/md4.c
+++ b/crypto/md4.c
@@ -233,18 +233,18 @@ static struct crypto_alg alg = {
.dia_final = md4_final } }
};
-static int __init init(void)
+static int __init md4_mod_init(void)
{
return crypto_register_alg(&alg);
}
-static void __exit fini(void)
+static void __exit md4_mod_fini(void)
{
crypto_unregister_alg(&alg);
}
-module_init(init);
-module_exit(fini);
+module_init(md4_mod_init);
+module_exit(md4_mod_fini);
MODULE_LICENSE("GPL");
MODULE_DESCRIPTION("MD4 Message Digest Algorithm");