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_ECDH --source crypto/ecdh.c Signed-off-by: Vegard Nossum <vegard.nossum@xxxxxxxxxx> --- crypto/ecdh.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crypto/ecdh.c b/crypto/ecdh.c index 9f0b93b3166d..32c98cebfda6 100644 --- a/crypto/ecdh.c +++ b/crypto/ecdh.c @@ -240,8 +240,8 @@ static void __exit ecdh_exit(void) crypto_unregister_kpp(&ecdh_nist_p384); } -module_init(ecdh_init); -module_exit(ecdh_exit); +crypto_module_init(ecdh_init); +crypto_module_exit(ecdh_exit); MODULE_ALIAS_CRYPTO("ecdh"); MODULE_LICENSE("GPL"); MODULE_DESCRIPTION("ECDH generic algorithm"); -- 2.39.3