X-Git-Url: https://git.openpandora.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=crypto%2Fcast5.c;h=8cbe28fa0e0c5d25a10cf947b4edd4f8f7a33719;hb=b6645c35843b9608bed8c2981fc53b942758853f;hp=13ea60abc19ab6181963dc90dcc6b7a9bef6992b;hpb=250d375d1da45a5e08ab8baf5eaa7eb258afd82b;p=pandora-kernel.git diff --git a/crypto/cast5.c b/crypto/cast5.c index 13ea60abc19a..8cbe28fa0e0c 100644 --- a/crypto/cast5.c +++ b/crypto/cast5.c @@ -817,18 +817,18 @@ static struct crypto_alg alg = { } }; -static int __init init(void) +static int __init cast5_mod_init(void) { return crypto_register_alg(&alg); } -static void __exit fini(void) +static void __exit cast5_mod_fini(void) { crypto_unregister_alg(&alg); } -module_init(init); -module_exit(fini); +module_init(cast5_mod_init); +module_exit(cast5_mod_fini); MODULE_LICENSE("GPL"); MODULE_DESCRIPTION("Cast5 Cipher Algorithm");