summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2025-06-13 19:59:29 +0300
committerLinus Torvalds <torvalds@linux-foundation.org>2025-06-13 19:59:29 +0300
commitad6159087fbbd754bfe940bd62b6322307925faa (patch)
tree6991dc04f8f1f01a909ece321e2ef4af2ef74f84
parent36df6f734a7ad69880c5262543165c47cb57169f (diff)
parent40a98e702b528c631094f2e524d309faf33dc774 (diff)
downloadlinux-ad6159087fbbd754bfe940bd62b6322307925faa.tar.xz
Merge tag 'v6.16-p4' of git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6
Pull crypto fix from Herbert Xu: "Fix a broken self-test in hkdf (new regression)" * tag 'v6.16-p4' of git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6: crypto: hkdf - move to late_initcall
-rw-r--r--crypto/hkdf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/hkdf.c b/crypto/hkdf.c
index f24c2a8d4df9..82d1b32ca6ce 100644
--- a/crypto/hkdf.c
+++ b/crypto/hkdf.c
@@ -566,7 +566,7 @@ static int __init crypto_hkdf_module_init(void)
static void __exit crypto_hkdf_module_exit(void) {}
-module_init(crypto_hkdf_module_init);
+late_initcall(crypto_hkdf_module_init);
module_exit(crypto_hkdf_module_exit);
MODULE_LICENSE("GPL");