X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=crypto%2Ftcrypt.c;h=6beabc5abd0747b0c2749d1d0c045c53e87e9856;hb=9f18409ea3d778a171a9505c0a849d846f352bd0;hp=689482cd16c2f4a17876f4edf2390441bdc561e7;hpb=76cb9521795a167ae3d206343c072f602d84f815;p=linux-2.6 diff --git a/crypto/tcrypt.c b/crypto/tcrypt.c index 689482cd16..6beabc5abd 100644 --- a/crypto/tcrypt.c +++ b/crypto/tcrypt.c @@ -1810,7 +1810,7 @@ static void do_test(void) } } -static int __init init(void) +static int __init tcrypt_mod_init(void) { int err = -ENOMEM; @@ -1849,10 +1849,10 @@ static int __init init(void) * If an init function is provided, an exit function must also be provided * to allow module unload. */ -static void __exit fini(void) { } +static void __exit tcrypt_mod_fini(void) { } -module_init(init); -module_exit(fini); +module_init(tcrypt_mod_init); +module_exit(tcrypt_mod_fini); module_param(mode, int, 0); module_param(sec, uint, 0);