diff options
author | 2025-06-13 09:59:29 -0700 | |
---|---|---|
committer | 2025-06-13 09:59:29 -0700 | |
commit | ad6159087fbbd754bfe940bd62b6322307925faa (patch) | |
tree | 6991dc04f8f1f01a909ece321e2ef4af2ef74f84 | |
parent | Merge tag 'bcachefs-2025-06-12' of git://evilpiepirate.org/bcachefs (diff) | |
parent | crypto: hkdf - move to late_initcall (diff) | |
download | wireguard-linux-ad6159087fbbd754bfe940bd62b6322307925faa.tar.xz wireguard-linux-ad6159087fbbd754bfe940bd62b6322307925faa.zip |
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.c | 2 |
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"); |