Message ID | 20250610191600.54994-1-ebiggers@kernel.org |
---|---|
State | New |
Headers | show |
Series | crypto: hkdf - move to late_initcall | expand |
diff --git a/crypto/hkdf.c b/crypto/hkdf.c index f24c2a8d4df99..82d1b32ca6ce4 100644 --- a/crypto/hkdf.c +++ b/crypto/hkdf.c @@ -564,10 +564,10 @@ static int __init crypto_hkdf_module_init(void) return 0; } 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"); MODULE_DESCRIPTION("HMAC-based Key Derivation Function (HKDF)");