diff options
Diffstat (limited to 'arch/x86/crypto')
-rw-r--r-- | arch/x86/crypto/twofish_glue_3way.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/crypto/twofish_glue_3way.c b/arch/x86/crypto/twofish_glue_3way.c index 408fc0c5814e..922ab24cce31 100644 --- a/arch/x86/crypto/twofish_glue_3way.c +++ b/arch/x86/crypto/twofish_glue_3way.c | |||
@@ -668,7 +668,7 @@ static int force; | |||
668 | module_param(force, int, 0); | 668 | module_param(force, int, 0); |
669 | MODULE_PARM_DESC(force, "Force module load, ignore CPU blacklist"); | 669 | MODULE_PARM_DESC(force, "Force module load, ignore CPU blacklist"); |
670 | 670 | ||
671 | int __init init(void) | 671 | static int __init init(void) |
672 | { | 672 | { |
673 | if (!force && is_blacklisted_cpu()) { | 673 | if (!force && is_blacklisted_cpu()) { |
674 | printk(KERN_INFO | 674 | printk(KERN_INFO |
@@ -681,7 +681,7 @@ int __init init(void) | |||
681 | return crypto_register_algs(tf_algs, ARRAY_SIZE(tf_algs)); | 681 | return crypto_register_algs(tf_algs, ARRAY_SIZE(tf_algs)); |
682 | } | 682 | } |
683 | 683 | ||
684 | void __exit fini(void) | 684 | static void __exit fini(void) |
685 | { | 685 | { |
686 | crypto_unregister_algs(tf_algs, ARRAY_SIZE(tf_algs)); | 686 | crypto_unregister_algs(tf_algs, ARRAY_SIZE(tf_algs)); |
687 | } | 687 | } |