Skip to content

Commit ad61590

Browse files
committed
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
2 parents 36df6f7 + 40a98e7 commit ad61590

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crypto/hkdf.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -566,7 +566,7 @@ static int __init crypto_hkdf_module_init(void)
566566

567567
static void __exit crypto_hkdf_module_exit(void) {}
568568

569-
module_init(crypto_hkdf_module_init);
569+
late_initcall(crypto_hkdf_module_init);
570570
module_exit(crypto_hkdf_module_exit);
571571

572572
MODULE_LICENSE("GPL");

0 commit comments

Comments
 (0)