diff options
Diffstat (limited to 'crypto/blowfish.c')
-rw-r--r-- | crypto/blowfish.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/crypto/blowfish.c b/crypto/blowfish.c index 80c3fd8be97c..6f5b48731922 100644 --- a/crypto/blowfish.c +++ b/crypto/blowfish.c | |||
@@ -465,18 +465,18 @@ static struct crypto_alg alg = { | |||
465 | .cia_decrypt = bf_decrypt } } | 465 | .cia_decrypt = bf_decrypt } } |
466 | }; | 466 | }; |
467 | 467 | ||
468 | static int __init init(void) | 468 | static int __init blowfish_mod_init(void) |
469 | { | 469 | { |
470 | return crypto_register_alg(&alg); | 470 | return crypto_register_alg(&alg); |
471 | } | 471 | } |
472 | 472 | ||
473 | static void __exit fini(void) | 473 | static void __exit blowfish_mod_fini(void) |
474 | { | 474 | { |
475 | crypto_unregister_alg(&alg); | 475 | crypto_unregister_alg(&alg); |
476 | } | 476 | } |
477 | 477 | ||
478 | module_init(init); | 478 | module_init(blowfish_mod_init); |
479 | module_exit(fini); | 479 | module_exit(blowfish_mod_fini); |
480 | 480 | ||
481 | MODULE_LICENSE("GPL"); | 481 | MODULE_LICENSE("GPL"); |
482 | MODULE_DESCRIPTION("Blowfish Cipher Algorithm"); | 482 | MODULE_DESCRIPTION("Blowfish Cipher Algorithm"); |