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_ECHAINIV --source crypto/echainiv.c Signed-off-by: Vegard Nossum <vegard.nossum@xxxxxxxxxx> --- crypto/echainiv.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crypto/echainiv.c b/crypto/echainiv.c index e0a2d3209938..d409b4169e83 100644 --- a/crypto/echainiv.c +++ b/crypto/echainiv.c @@ -145,8 +145,8 @@ static void __exit echainiv_module_exit(void) crypto_unregister_template(&echainiv_tmpl); } -module_init(echainiv_module_init); -module_exit(echainiv_module_exit); +crypto_module_init(echainiv_module_init); +crypto_module_exit(echainiv_module_exit); MODULE_LICENSE("GPL"); MODULE_DESCRIPTION("Encrypted Chain IV Generator"); -- 2.39.3