X-Git-Url: http://pilppa.org/gitweb/gitweb.cgi?a=blobdiff_plain;f=crypto%2Ffcrypt.c;h=1302f4cae337489f5a7aafaa39a36e1fab56bdca;hb=2e1c754bcb5f5bc6485f65b9d3f4a05300955dc5;hp=a32cb68bbc604acd467ad26ebdc4519d550f9de2;hpb=6e5565f949af1322f8f3d3f43d044645ae448499;p=linux-2.6-omap-h63xx.git diff --git a/crypto/fcrypt.c b/crypto/fcrypt.c index a32cb68bbc6..1302f4cae33 100644 --- a/crypto/fcrypt.c +++ b/crypto/fcrypt.c @@ -405,18 +405,18 @@ static struct crypto_alg fcrypt_alg = { .cia_decrypt = fcrypt_decrypt } } }; -static int __init init(void) +static int __init fcrypt_mod_init(void) { return crypto_register_alg(&fcrypt_alg); } -static void __exit fini(void) +static void __exit fcrypt_mod_fini(void) { crypto_unregister_alg(&fcrypt_alg); } -module_init(init); -module_exit(fini); +module_init(fcrypt_mod_init); +module_exit(fcrypt_mod_fini); MODULE_LICENSE("Dual BSD/GPL"); MODULE_DESCRIPTION("FCrypt Cipher Algorithm");