diff options
Diffstat (limited to 'crypto/serpent.c')
-rw-r--r-- | crypto/serpent.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/crypto/serpent.c b/crypto/serpent.c index 2b0a19a44ec5..b651a55fa569 100644 --- a/crypto/serpent.c +++ b/crypto/serpent.c | |||
@@ -557,7 +557,7 @@ static struct crypto_alg tnepres_alg = { | |||
557 | .cia_decrypt = tnepres_decrypt } } | 557 | .cia_decrypt = tnepres_decrypt } } |
558 | }; | 558 | }; |
559 | 559 | ||
560 | static int __init init(void) | 560 | static int __init serpent_mod_init(void) |
561 | { | 561 | { |
562 | int ret = crypto_register_alg(&serpent_alg); | 562 | int ret = crypto_register_alg(&serpent_alg); |
563 | 563 | ||
@@ -572,14 +572,14 @@ static int __init init(void) | |||
572 | return ret; | 572 | return ret; |
573 | } | 573 | } |
574 | 574 | ||
575 | static void __exit fini(void) | 575 | static void __exit serpent_mod_fini(void) |
576 | { | 576 | { |
577 | crypto_unregister_alg(&tnepres_alg); | 577 | crypto_unregister_alg(&tnepres_alg); |
578 | crypto_unregister_alg(&serpent_alg); | 578 | crypto_unregister_alg(&serpent_alg); |
579 | } | 579 | } |
580 | 580 | ||
581 | module_init(init); | 581 | module_init(serpent_mod_init); |
582 | module_exit(fini); | 582 | module_exit(serpent_mod_fini); |
583 | 583 | ||
584 | MODULE_LICENSE("GPL"); | 584 | MODULE_LICENSE("GPL"); |
585 | MODULE_DESCRIPTION("Serpent and tnepres (kerneli compatible serpent reversed) Cipher Algorithm"); | 585 | MODULE_DESCRIPTION("Serpent and tnepres (kerneli compatible serpent reversed) Cipher Algorithm"); |