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_SHA256 --source crypto/sha256.c Signed-off-by: Vegard Nossum <vegard.nossum@xxxxxxxxxx> --- crypto/sha256.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crypto/sha256.c b/crypto/sha256.c index 052806559f06..808448aa01c7 100644 --- a/crypto/sha256.c +++ b/crypto/sha256.c @@ -327,13 +327,13 @@ static int __init crypto_sha256_mod_init(void) { return crypto_register_shashes(algs, ARRAY_SIZE(algs)); } -module_init(crypto_sha256_mod_init); +crypto_module_init(crypto_sha256_mod_init); static void __exit crypto_sha256_mod_exit(void) { crypto_unregister_shashes(algs, ARRAY_SIZE(algs)); } -module_exit(crypto_sha256_mod_exit); +crypto_module_exit(crypto_sha256_mod_exit); MODULE_LICENSE("GPL"); MODULE_DESCRIPTION("Crypto API support for SHA-224, SHA-256, HMAC-SHA224, and HMAC-SHA256"); -- 2.39.3