Apply Crypto API wrappers to the exported crypto symbol in CONFIG_CRYPTO_ZSTD-related crypto to convert them into pluggable interface.
Signed-off-by: Jay Wang <[email protected]> --- crypto/Makefile | 2 +- crypto/zstd.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/crypto/Makefile b/crypto/Makefile index 3f4cd954ef06..c4516e1943a7 100644 --- a/crypto/Makefile +++ b/crypto/Makefile @@ -177,7 +177,7 @@ crypto-objs-$(CONFIG_CRYPTO_USER_API_HASH) += algif_hash.o crypto-objs-$(CONFIG_CRYPTO_USER_API_SKCIPHER) += algif_skcipher.o crypto-objs-$(CONFIG_CRYPTO_USER_API_RNG) += algif_rng.o crypto-objs-$(CONFIG_CRYPTO_USER_API_AEAD) += algif_aead.o -obj-$(CONFIG_CRYPTO_ZSTD) += zstd.o +crypto-objs-$(CONFIG_CRYPTO_ZSTD) += zstd.o crypto-objs-$(CONFIG_CRYPTO_ECC) += ecc.o obj-$(CONFIG_CRYPTO_ESSIV) += essiv.o diff --git a/crypto/zstd.c b/crypto/zstd.c index cbbd0413751a..3b9fe204c68c 100644 --- a/crypto/zstd.c +++ b/crypto/zstd.c @@ -307,8 +307,8 @@ static void __exit zstd_mod_fini(void) crypto_acomp_free_streams(&zstd_streams); } -module_init(zstd_mod_init); -module_exit(zstd_mod_fini); +crypto_module_init(zstd_mod_init); +crypto_module_exit(zstd_mod_fini); MODULE_LICENSE("GPL"); MODULE_DESCRIPTION("Zstd Compression Algorithm"); -- 2.47.3
