X-Git-Url: http://pilppa.org/gitweb/gitweb.cgi?a=blobdiff_plain;f=crypto%2Fcrypto_null.c;h=1f7d53013a228b4a459470d86ebfc0bb17998239;hb=18229df5b613ed0732a766fc37850de2e7988e43;hp=ff7b3de1bcfdb1bd81742367a5335a6717b0658e;hpb=e07dd2ad305f6b29b47d713600aa8b722ef2a9f7;p=linux-2.6-omap-h63xx.git diff --git a/crypto/crypto_null.c b/crypto/crypto_null.c index ff7b3de1bcf..1f7d53013a2 100644 --- a/crypto/crypto_null.c +++ b/crypto/crypto_null.c @@ -142,7 +142,7 @@ MODULE_ALIAS("compress_null"); MODULE_ALIAS("digest_null"); MODULE_ALIAS("cipher_null"); -static int __init init(void) +static int __init crypto_null_mod_init(void) { int ret = 0; @@ -174,7 +174,7 @@ out_unregister_cipher: goto out; } -static void __exit fini(void) +static void __exit crypto_null_mod_fini(void) { crypto_unregister_alg(&compress_null); crypto_unregister_alg(&digest_null); @@ -182,8 +182,8 @@ static void __exit fini(void) crypto_unregister_alg(&cipher_null); } -module_init(init); -module_exit(fini); +module_init(crypto_null_mod_init); +module_exit(crypto_null_mod_fini); MODULE_LICENSE("GPL"); MODULE_DESCRIPTION("Null Cryptographic Algorithms");