Apply Crypto API wrappers to the exported crypto symbol in CONFIG_CRYPTO_CAMELLIA-related crypto to convert them into pluggable interface.
Signed-off-by: Jay Wang <[email protected]> --- crypto/Makefile | 2 +- crypto/camellia_generic.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/crypto/Makefile b/crypto/Makefile index c14713e9cc55..4b6e56ad4d1c 100644 --- a/crypto/Makefile +++ b/crypto/Makefile @@ -137,7 +137,7 @@ CFLAGS_serpent_generic.o := $(call cc-option,-fsched-pressure) # https://gcc.gn crypto-objs-$(CONFIG_CRYPTO_AES) += aes.o crypto-objs-$(CONFIG_CRYPTO_SM4) += sm4.o crypto-objs-$(CONFIG_CRYPTO_SM4_GENERIC) += sm4_generic.o -obj-$(CONFIG_CRYPTO_CAMELLIA) += camellia_generic.o +crypto-objs-$(CONFIG_CRYPTO_CAMELLIA) += camellia_generic.o obj-$(CONFIG_CRYPTO_CAST_COMMON) += cast_common.o obj-$(CONFIG_CRYPTO_CAST5) += cast5_generic.o obj-$(CONFIG_CRYPTO_CAST6) += cast6_generic.o diff --git a/crypto/camellia_generic.c b/crypto/camellia_generic.c index ee4336a04b93..15a68abc387b 100644 --- a/crypto/camellia_generic.c +++ b/crypto/camellia_generic.c @@ -1064,8 +1064,8 @@ static void __exit camellia_fini(void) crypto_unregister_alg(&camellia_alg); } -module_init(camellia_init); -module_exit(camellia_fini); +crypto_module_init(camellia_init); +crypto_module_exit(camellia_fini); MODULE_DESCRIPTION("Camellia Cipher Algorithm"); MODULE_LICENSE("GPL"); -- 2.47.3
