Apply Crypto API wrappers to the exported crypto symbol in CONFIG_CRYPTO_MD4-related crypto to convert them into pluggable interface.
Signed-off-by: Jay Wang <[email protected]> --- crypto/Makefile | 2 +- crypto/md4.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/crypto/Makefile b/crypto/Makefile index 6d1077d11538..32f038ff47de 100644 --- a/crypto/Makefile +++ b/crypto/Makefile @@ -76,7 +76,7 @@ crypto-objs-$(CONFIG_CRYPTO_CMAC) += cmac.o crypto-objs-$(CONFIG_CRYPTO_HMAC) += hmac.o crypto-objs-$(CONFIG_CRYPTO_XCBC) += xcbc.o crypto-objs-$(CONFIG_CRYPTO_NULL) += crypto_null.o -obj-$(CONFIG_CRYPTO_MD4) += md4.o +crypto-objs-$(CONFIG_CRYPTO_MD4) += md4.o crypto-objs-$(CONFIG_CRYPTO_MD5) += md5.o obj-$(CONFIG_CRYPTO_RMD160) += rmd160.o obj-$(CONFIG_CRYPTO_SHA1) += sha1.o diff --git a/crypto/md4.c b/crypto/md4.c index 55bf47e23c13..04a7ce7eb460 100644 --- a/crypto/md4.c +++ b/crypto/md4.c @@ -233,8 +233,8 @@ static void __exit md4_mod_fini(void) crypto_unregister_shash(&alg); } -module_init(md4_mod_init); -module_exit(md4_mod_fini); +crypto_module_init(md4_mod_init); +crypto_module_exit(md4_mod_fini); MODULE_LICENSE("GPL"); MODULE_DESCRIPTION("MD4 Message Digest Algorithm"); -- 2.47.3
