Apply Crypto API wrappers to the exported crypto symbol in CONFIG_CRYPTO_STREEBOG-related crypto to convert them into pluggable interface.
Signed-off-by: Jay Wang <[email protected]> --- crypto/Makefile | 2 +- crypto/streebog_generic.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/crypto/Makefile b/crypto/Makefile index 64df3408cca0..c83ad9bb4324 100644 --- a/crypto/Makefile +++ b/crypto/Makefile @@ -84,7 +84,7 @@ crypto-objs-$(CONFIG_CRYPTO_SHA256) += sha256.o crypto-objs-$(CONFIG_CRYPTO_SHA512) += sha512.o crypto-objs-$(CONFIG_CRYPTO_SHA3) += sha3.o crypto-objs-$(CONFIG_CRYPTO_SM3_GENERIC) += sm3_generic.o -obj-$(CONFIG_CRYPTO_STREEBOG) += streebog_generic.o +crypto-objs-$(CONFIG_CRYPTO_STREEBOG) += streebog_generic.o obj-$(CONFIG_CRYPTO_WP512) += wp512.o CFLAGS_wp512.o := $(call cc-option,-fno-schedule-insns) # https://gcc.gnu.org/bugzilla/show_bug.cgi?id=79149 obj-$(CONFIG_CRYPTO_BLAKE2B) += blake2b.o diff --git a/crypto/streebog_generic.c b/crypto/streebog_generic.c index 57bbf70f4c22..1ed42a26bec9 100644 --- a/crypto/streebog_generic.c +++ b/crypto/streebog_generic.c @@ -1061,8 +1061,8 @@ static void __exit streebog_mod_fini(void) crypto_unregister_shashes(algs, ARRAY_SIZE(algs)); } -module_init(streebog_mod_init); -module_exit(streebog_mod_fini); +crypto_module_init(streebog_mod_init); +crypto_module_exit(streebog_mod_fini); MODULE_LICENSE("GPL"); MODULE_AUTHOR("Vitaly Chikunov <[email protected]>"); -- 2.47.3
