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_ECDSA --source crypto/ecdsa.c Signed-off-by: Vegard Nossum <vegard.nossum@xxxxxxxxxx> --- crypto/ecdsa.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crypto/ecdsa.c b/crypto/ecdsa.c index ce8e4364842f..64903419e6db 100644 --- a/crypto/ecdsa.c +++ b/crypto/ecdsa.c @@ -334,8 +334,8 @@ static void __exit ecdsa_exit(void) crypto_unregister_sig(&ecdsa_nist_p521); } -module_init(ecdsa_init); -module_exit(ecdsa_exit); +crypto_module_init(ecdsa_init); +crypto_module_exit(ecdsa_exit); MODULE_LICENSE("GPL"); MODULE_AUTHOR("Stefan Berger <stefanb@xxxxxxxxxxxxx>"); -- 2.39.3