Apply Crypto API wrappers to the exported crypto symbol in CONFIG_CRYPTO_XXHASH-related crypto to convert them into pluggable interface.
Signed-off-by: Jay Wang <[email protected]> --- crypto/Makefile | 2 +- crypto/xxhash_generic.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/crypto/Makefile b/crypto/Makefile index 665299fd5a5a..6dc023d0851c 100644 --- a/crypto/Makefile +++ b/crypto/Makefile @@ -160,7 +160,7 @@ crypto-objs-$(CONFIG_CRYPTO_KRB5ENC) += krb5enc.o crypto-objs-$(CONFIG_CRYPTO_LZO) += lzo.o lzo-rle.o crypto-objs-$(CONFIG_CRYPTO_LZ4) += lz4.o crypto-objs-$(CONFIG_CRYPTO_LZ4HC) += lz4hc.o -obj-$(CONFIG_CRYPTO_XXHASH) += xxhash_generic.o +crypto-objs-$(CONFIG_CRYPTO_XXHASH) += xxhash_generic.o obj-$(CONFIG_CRYPTO_842) += 842.o crypto-objs-$(CONFIG_CRYPTO_RNG2) += rng.o crypto-objs-$(CONFIG_CRYPTO_DRBG) += drbg.o diff --git a/crypto/xxhash_generic.c b/crypto/xxhash_generic.c index 175bb7ae0fcd..4e41c4d213df 100644 --- a/crypto/xxhash_generic.c +++ b/crypto/xxhash_generic.c @@ -96,8 +96,8 @@ static void __exit xxhash_mod_fini(void) crypto_unregister_shash(&alg); } -module_init(xxhash_mod_init); -module_exit(xxhash_mod_fini); +crypto_module_init(xxhash_mod_init); +crypto_module_exit(xxhash_mod_fini); MODULE_AUTHOR("Nikolay Borisov <[email protected]>"); MODULE_DESCRIPTION("xxhash calculations wrapper for lib/xxhash.c"); -- 2.47.3
