X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=crypto%2Fcast5.c;h=8cbe28fa0e0c5d25a10cf947b4edd4f8f7a33719;hb=cadc723cc19ce6b881d973d3c04e25ebb83058e6;hp=13ea60abc19ab6181963dc90dcc6b7a9bef6992b;hpb=3eeab61aa3ddd3c0bedb7449ada1599de22fdb5a;p=linux-2.6 diff --git a/crypto/cast5.c b/crypto/cast5.c index 13ea60abc1..8cbe28fa0e 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");