X-Git-Url: http://pilppa.org/gitweb/gitweb.cgi?a=blobdiff_plain;f=crypto%2Fsha1_generic.c;h=c7c6899e1fca8efb0ce9af81c42747f180203ed7;hb=ed9b3e3379731e9f9d2f73f3d7fd9e7d2ce3df4a;hp=68c62f528eb59ed86c40086e4261c5824792bcaf;hpb=c4888f9ffafe7db107b7eafb3a68eaeeff3779c3;p=linux-2.6-omap-h63xx.git diff --git a/crypto/sha1_generic.c b/crypto/sha1_generic.c index 68c62f528eb..c7c6899e1fc 100644 --- a/crypto/sha1_generic.c +++ b/crypto/sha1_generic.c @@ -120,18 +120,18 @@ static struct crypto_alg alg = { .dia_final = sha1_final } } }; -static int __init init(void) +static int __init sha1_generic_mod_init(void) { return crypto_register_alg(&alg); } -static void __exit fini(void) +static void __exit sha1_generic_mod_fini(void) { crypto_unregister_alg(&alg); } -module_init(init); -module_exit(fini); +module_init(sha1_generic_mod_init); +module_exit(sha1_generic_mod_fini); MODULE_LICENSE("GPL"); MODULE_DESCRIPTION("SHA1 Secure Hash Algorithm");