From: Vegard Nossum <[email protected]> Apply Crypto API wrappers to the exported crypto symbol in CONFIG_CRYPTO_CTR-related crypto to convert them into pluggable interface.
Signed-off-by: Vegard Nossum <[email protected]> [add ctr.o into crypto-objs-y; revise commit message] Signed-off-by: Jay Wang <[email protected]> --- crypto/Makefile | 2 +- crypto/ctr.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/crypto/Makefile b/crypto/Makefile index 354ce7a46a0a..d5b5ca797dc6 100644 --- a/crypto/Makefile +++ b/crypto/Makefile @@ -94,7 +94,7 @@ obj-$(CONFIG_CRYPTO_PCBC) += pcbc.o obj-$(CONFIG_CRYPTO_CTS) += cts.o obj-$(CONFIG_CRYPTO_LRW) += lrw.o obj-$(CONFIG_CRYPTO_XTS) += xts.o -obj-$(CONFIG_CRYPTO_CTR) += ctr.o +crypto-objs-$(CONFIG_CRYPTO_CTR) += ctr.o obj-$(CONFIG_CRYPTO_XCTR) += xctr.o obj-$(CONFIG_CRYPTO_HCTR2) += hctr2.o obj-$(CONFIG_CRYPTO_ADIANTUM) += adiantum.o diff --git a/crypto/ctr.c b/crypto/ctr.c index a388f0ceb3a0..fa67cf6de4b1 100644 --- a/crypto/ctr.c +++ b/crypto/ctr.c @@ -350,8 +350,8 @@ static void __exit crypto_ctr_module_exit(void) ARRAY_SIZE(crypto_ctr_tmpls)); } -module_init(crypto_ctr_module_init); -module_exit(crypto_ctr_module_exit); +crypto_module_init(crypto_ctr_module_init); +crypto_module_exit(crypto_ctr_module_exit); MODULE_LICENSE("GPL"); MODULE_DESCRIPTION("CTR block cipher mode of operation"); -- 2.47.3
