Apply Crypto API wrappers to the exported crypto symbol in CONFIG_CRYPTO_842-related crypto to convert them into pluggable interface.
Signed-off-by: Jay Wang <[email protected]> --- crypto/842.c | 4 ++-- crypto/Makefile | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/crypto/842.c b/crypto/842.c index 4007e87bed80..965f0f8dbc43 100644 --- a/crypto/842.c +++ b/crypto/842.c @@ -72,13 +72,13 @@ static int __init crypto842_mod_init(void) { return crypto_register_scomp(&scomp); } -module_init(crypto842_mod_init); +crypto_module_init(crypto842_mod_init); static void __exit crypto842_mod_exit(void) { crypto_unregister_scomp(&scomp); } -module_exit(crypto842_mod_exit); +crypto_module_exit(crypto842_mod_exit); MODULE_LICENSE("GPL"); MODULE_DESCRIPTION("842 Software Compression Algorithm"); diff --git a/crypto/Makefile b/crypto/Makefile index 6dc023d0851c..66319c92a983 100644 --- a/crypto/Makefile +++ b/crypto/Makefile @@ -161,7 +161,7 @@ crypto-objs-$(CONFIG_CRYPTO_LZO) += lzo.o lzo-rle.o crypto-objs-$(CONFIG_CRYPTO_LZ4) += lz4.o crypto-objs-$(CONFIG_CRYPTO_LZ4HC) += lz4hc.o crypto-objs-$(CONFIG_CRYPTO_XXHASH) += xxhash_generic.o -obj-$(CONFIG_CRYPTO_842) += 842.o +crypto-objs-$(CONFIG_CRYPTO_842) += 842.o crypto-objs-$(CONFIG_CRYPTO_RNG2) += rng.o crypto-objs-$(CONFIG_CRYPTO_DRBG) += drbg.o crypto-objs-$(CONFIG_CRYPTO_JITTERENTROPY) += jitterentropy_rng.o -- 2.47.3
