VisionFive2 Linux kernel

StarFive Tech Linux Kernel for VisionFive (JH7110) boards (mirror)

More than 9999 Commits   33 Branches   55 Tags
author: Ard Biesheuvel <ardb@kernel.org> 2020-11-20 12:04:31 +0100 committer: Herbert Xu <herbert@gondor.apana.org.au> 2020-11-27 17:13:44 +1100 commit: 08a7e33c083b60c1ddd330df22fb56038e4a40ad parent: e8a3dae6910157180c88c8b0e0dd06aee849b7fc
Commit Summary:
crypto: tcrypt - don't initialize at subsys_initcall time
Diffstat:
1 file changed, 1 insertion, 1 deletion
diff --git a/crypto/tcrypt.c b/crypto/tcrypt.c
index eea0f453cfb6..fc1f3e516694 100644
--- a/crypto/tcrypt.c
+++ b/crypto/tcrypt.c
@@ -3066,7 +3066,7 @@ err_free_tv:
  */
 static void __exit tcrypt_mod_fini(void) { }
 
-subsys_initcall(tcrypt_mod_init);
+late_initcall(tcrypt_mod_init);
 module_exit(tcrypt_mod_fini);
 
 module_param(alg, charp, 0);