aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/crypto
diff options
context:
space:
mode:
Diffstat (limited to 'arch/x86/crypto')
-rw-r--r--arch/x86/crypto/twofish_glue_3way.c4
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;
668module_param(force, int, 0); 668module_param(force, int, 0);
669MODULE_PARM_DESC(force, "Force module load, ignore CPU blacklist"); 669MODULE_PARM_DESC(force, "Force module load, ignore CPU blacklist");
670 670
671int __init init(void) 671static 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
684void __exit fini(void) 684static 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}