X-Git-Url: http://pilppa.org/gitweb/gitweb.cgi?a=blobdiff_plain;f=crypto%2Fcast6.c;h=007d02beed67f3f2b197ee4c01bacb20a73fa71d;hb=96b0317906690997c16c7efffbc4c0fafcd6f7f2;hp=5fd9420dc58e94098a9da68e0fb4488bac79742d;hpb=eba0e319c12fb098d66316a8eafbaaa9174a07c3;p=linux-2.6-omap-h63xx.git diff --git a/crypto/cast6.c b/crypto/cast6.c index 5fd9420dc58..007d02beed6 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");