Apply Crypto API wrappers to the exported crypto symbol in CONFIG_CRYPTO_SEED-related crypto to convert them into pluggable interface.
Signed-off-by: Jay Wang <[email protected]> --- crypto/Makefile | 2 +- crypto/seed.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/crypto/Makefile b/crypto/Makefile index fb863dcef44f..3e515caa72f5 100644 --- a/crypto/Makefile +++ b/crypto/Makefile @@ -145,7 +145,7 @@ crypto-objs-$(CONFIG_CRYPTO_ARC4) += arc4.o crypto-objs-$(CONFIG_CRYPTO_TEA) += tea.o crypto-objs-$(CONFIG_CRYPTO_KHAZAD) += khazad.o crypto-objs-$(CONFIG_CRYPTO_ANUBIS) += anubis.o -obj-$(CONFIG_CRYPTO_SEED) += seed.o +crypto-objs-$(CONFIG_CRYPTO_SEED) += seed.o obj-$(CONFIG_CRYPTO_ARIA) += aria_generic.o crypto-objs-$(CONFIG_CRYPTO_CHACHA20) += chacha.o CFLAGS_chacha.o += -DARCH=$(ARCH) diff --git a/crypto/seed.c b/crypto/seed.c index 815391f213de..f98ea0d623bd 100644 --- a/crypto/seed.c +++ b/crypto/seed.c @@ -460,8 +460,8 @@ static void __exit seed_fini(void) crypto_unregister_alg(&seed_alg); } -module_init(seed_init); -module_exit(seed_fini); +crypto_module_init(seed_init); +crypto_module_exit(seed_fini); MODULE_DESCRIPTION("SEED Cipher Algorithm"); MODULE_LICENSE("GPL"); -- 2.47.3
