diff options
Diffstat (limited to 'crypto/fcrypt.c')
-rw-r--r-- | crypto/fcrypt.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/crypto/fcrypt.c b/crypto/fcrypt.c index a32cb68bbc60..1302f4cae337 100644 --- a/crypto/fcrypt.c +++ b/crypto/fcrypt.c | |||
@@ -405,18 +405,18 @@ static struct crypto_alg fcrypt_alg = { | |||
405 | .cia_decrypt = fcrypt_decrypt } } | 405 | .cia_decrypt = fcrypt_decrypt } } |
406 | }; | 406 | }; |
407 | 407 | ||
408 | static int __init init(void) | 408 | static int __init fcrypt_mod_init(void) |
409 | { | 409 | { |
410 | return crypto_register_alg(&fcrypt_alg); | 410 | return crypto_register_alg(&fcrypt_alg); |
411 | } | 411 | } |
412 | 412 | ||
413 | static void __exit fini(void) | 413 | static void __exit fcrypt_mod_fini(void) |
414 | { | 414 | { |
415 | crypto_unregister_alg(&fcrypt_alg); | 415 | crypto_unregister_alg(&fcrypt_alg); |
416 | } | 416 | } |
417 | 417 | ||
418 | module_init(init); | 418 | module_init(fcrypt_mod_init); |
419 | module_exit(fini); | 419 | module_exit(fcrypt_mod_fini); |
420 | 420 | ||
421 | MODULE_LICENSE("Dual BSD/GPL"); | 421 | MODULE_LICENSE("Dual BSD/GPL"); |
422 | MODULE_DESCRIPTION("FCrypt Cipher Algorithm"); | 422 | MODULE_DESCRIPTION("FCrypt Cipher Algorithm"); |