Apply Crypto API wrappers to the exported crypto symbol in CONFIG_CRYPTO_ESSIV-related crypto to convert them into pluggable interface.
Signed-off-by: Jay Wang <[email protected]> --- crypto/Makefile | 2 +- crypto/essiv.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/crypto/Makefile b/crypto/Makefile index c4516e1943a7..3247d53c1fc6 100644 --- a/crypto/Makefile +++ b/crypto/Makefile @@ -179,7 +179,7 @@ crypto-objs-$(CONFIG_CRYPTO_USER_API_RNG) += algif_rng.o crypto-objs-$(CONFIG_CRYPTO_USER_API_AEAD) += algif_aead.o crypto-objs-$(CONFIG_CRYPTO_ZSTD) += zstd.o crypto-objs-$(CONFIG_CRYPTO_ECC) += ecc.o -obj-$(CONFIG_CRYPTO_ESSIV) += essiv.o +crypto-objs-$(CONFIG_CRYPTO_ESSIV) += essiv.o ecdh_generic-y += ecdh.o ecdh_generic-y += ecdh_helper.o diff --git a/crypto/essiv.c b/crypto/essiv.c index a47a3eab6935..859486b9b063 100644 --- a/crypto/essiv.c +++ b/crypto/essiv.c @@ -639,8 +639,8 @@ static void __exit essiv_module_exit(void) crypto_unregister_template(&essiv_tmpl); } -module_init(essiv_module_init); -module_exit(essiv_module_exit); +crypto_module_init(essiv_module_init); +crypto_module_exit(essiv_module_exit); MODULE_DESCRIPTION("ESSIV skcipher/aead wrapper for block encryption"); MODULE_LICENSE("GPL v2"); -- 2.47.3
