Use CRYPTO_API() etc. from include/crypto/api.h in preparation for compilation as part of support for FIPS 140 standalone modules. Generated using: ./fipsify.py --config CONFIG_CRYPTO_BENCHMARK --source crypto/tcrypt.c Signed-off-by: Vegard Nossum <vegard.nossum@xxxxxxxxxx> --- crypto/tcrypt.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crypto/tcrypt.c b/crypto/tcrypt.c index b69560f2fdef..233ab3073b79 100644 --- a/crypto/tcrypt.c +++ b/crypto/tcrypt.c @@ -2864,8 +2864,8 @@ static int __init tcrypt_mod_init(void) */ static void __exit tcrypt_mod_fini(void) { } -late_initcall(tcrypt_mod_init); -module_exit(tcrypt_mod_fini); +crypto_late_initcall(tcrypt_mod_init); +crypto_module_exit(tcrypt_mod_fini); module_param(alg, charp, 0); module_param(type, uint, 0); -- 2.39.3