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_MANAGER2 --source crypto/algboss.c Signed-off-by: Vegard Nossum <vegard.nossum@xxxxxxxxxx> --- crypto/algboss.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crypto/algboss.c b/crypto/algboss.c index 2599c54a49ff..9d540ab27e9e 100644 --- a/crypto/algboss.c +++ b/crypto/algboss.c @@ -235,8 +235,8 @@ static void __exit cryptomgr_exit(void) BUG_ON(err); } -module_init(cryptomgr_init); -module_exit(cryptomgr_exit); +crypto_module_init(cryptomgr_init); +crypto_module_exit(cryptomgr_exit); MODULE_LICENSE("GPL"); MODULE_DESCRIPTION("Crypto Algorithm Manager"); -- 2.39.3