X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=inline;f=crypto%2Fcast6.c;h=007d02beed67f3f2b197ee4c01bacb20a73fa71d;hb=ecc8b655b38a880b578146895e0e1e2d477ca2c0;hp=5fd9420dc58e94098a9da68e0fb4488bac79742d;hpb=e07dd2ad305f6b29b47d713600aa8b722ef2a9f7;p=linux-2.6 diff --git a/crypto/cast6.c b/crypto/cast6.c index 5fd9420dc5..007d02beed 100644 --- a/crypto/cast6.c +++ b/crypto/cast6.c @@ -528,18 +528,18 @@ static struct crypto_alg alg = { } }; -static int __init init(void) +static int __init cast6_mod_init(void) { return crypto_register_alg(&alg); } -static void __exit fini(void) +static void __exit cast6_mod_fini(void) { crypto_unregister_alg(&alg); } -module_init(init); -module_exit(fini); +module_init(cast6_mod_init); +module_exit(cast6_mod_fini); MODULE_LICENSE("GPL"); MODULE_DESCRIPTION("Cast6 Cipher Algorithm");