From: Vegard Nossum <[email protected]> Apply Crypto API wrappers to the exported crypto symbol in CONFIG_CRYPTO_SEQIV-related crypto to convert them into pluggable interface.
Signed-off-by: Vegard Nossum <[email protected]> [add seqiv.o into crypto-objs-y; revise commit message] Signed-off-by: Jay Wang <[email protected]> --- crypto/Makefile | 2 +- crypto/seqiv.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/crypto/Makefile b/crypto/Makefile index 546f80e014e1..4d6f1c927db4 100644 --- a/crypto/Makefile +++ b/crypto/Makefile @@ -26,7 +26,7 @@ ifeq ($(CONFIG_BPF_SYSCALL),y) crypto-objs-$(CONFIG_CRYPTO_SKCIPHER2) += bpf_crypto_skcipher.o endif -obj-$(CONFIG_CRYPTO_SEQIV) += seqiv.o +crypto-objs-$(CONFIG_CRYPTO_SEQIV) += seqiv.o obj-$(CONFIG_CRYPTO_ECHAINIV) += echainiv.o crypto_hash-y += ahash.o diff --git a/crypto/seqiv.c b/crypto/seqiv.c index 678bb4145d78..5db32c596c40 100644 --- a/crypto/seqiv.c +++ b/crypto/seqiv.c @@ -170,8 +170,8 @@ static void __exit seqiv_module_exit(void) crypto_unregister_template(&seqiv_tmpl); } -module_init(seqiv_module_init); -module_exit(seqiv_module_exit); +crypto_module_init(seqiv_module_init); +crypto_module_exit(seqiv_module_exit); MODULE_LICENSE("GPL"); MODULE_DESCRIPTION("Sequence Number IV Generator"); -- 2.47.3
