Apply Crypto API wrappers to the exported crypto symbol in CONFIG_CRYPTO_DEFLATE-related crypto to convert them into pluggable interface.
Signed-off-by: Jay Wang <[email protected]> --- crypto/Makefile | 2 +- crypto/deflate.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/crypto/Makefile b/crypto/Makefile index c7dcc0e55325..a989d103c191 100644 --- a/crypto/Makefile +++ b/crypto/Makefile @@ -149,7 +149,7 @@ crypto-objs-$(CONFIG_CRYPTO_SEED) += seed.o crypto-objs-$(CONFIG_CRYPTO_ARIA) += aria_generic.o crypto-objs-$(CONFIG_CRYPTO_CHACHA20) += chacha.o CFLAGS_chacha.o += -DARCH=$(ARCH) -obj-$(CONFIG_CRYPTO_DEFLATE) += deflate.o +crypto-objs-$(CONFIG_CRYPTO_DEFLATE) += deflate.o obj-$(CONFIG_CRYPTO_MICHAEL_MIC) += michael_mic.o obj-$(CONFIG_CRYPTO_CRC32C) += crc32c-cryptoapi.o crc32c-cryptoapi-y := crc32c.o diff --git a/crypto/deflate.c b/crypto/deflate.c index a3e1fff55661..7c8e331556cf 100644 --- a/crypto/deflate.c +++ b/crypto/deflate.c @@ -249,8 +249,8 @@ static void __exit deflate_mod_fini(void) crypto_acomp_free_streams(&deflate_streams); } -module_init(deflate_mod_init); -module_exit(deflate_mod_fini); +crypto_module_init(deflate_mod_init); +crypto_module_exit(deflate_mod_fini); MODULE_LICENSE("GPL"); MODULE_DESCRIPTION("Deflate Compression Algorithm for IPCOMP"); -- 2.47.3
