Apply Crypto API wrappers to the exported crypto symbol in CONFIG_CRYPTO_ADIANTUM-related crypto to convert them into pluggable interface.
Signed-off-by: Jay Wang <[email protected]> --- crypto/Makefile | 2 +- crypto/adiantum.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/crypto/Makefile b/crypto/Makefile index c3b0de034a47..34e278185d16 100644 --- a/crypto/Makefile +++ b/crypto/Makefile @@ -97,7 +97,7 @@ crypto-objs-$(CONFIG_CRYPTO_XTS) += xts.o crypto-objs-$(CONFIG_CRYPTO_CTR) += ctr.o crypto-objs-$(CONFIG_CRYPTO_XCTR) += xctr.o crypto-objs-$(CONFIG_CRYPTO_HCTR2) += hctr2.o -obj-$(CONFIG_CRYPTO_ADIANTUM) += adiantum.o +crypto-objs-$(CONFIG_CRYPTO_ADIANTUM) += adiantum.o crypto-objs-$(CONFIG_CRYPTO_GCM) += gcm.o crypto-objs-$(CONFIG_CRYPTO_CCM) += ccm.o obj-$(CONFIG_CRYPTO_CHACHA20POLY1305) += chacha20poly1305.o diff --git a/crypto/adiantum.c b/crypto/adiantum.c index 5ddf585abb66..8e8e8654432c 100644 --- a/crypto/adiantum.c +++ b/crypto/adiantum.c @@ -683,8 +683,8 @@ static void __exit adiantum_module_exit(void) crypto_unregister_template(&adiantum_tmpl); } -module_init(adiantum_module_init); -module_exit(adiantum_module_exit); +crypto_module_init(adiantum_module_init); +crypto_module_exit(adiantum_module_exit); MODULE_DESCRIPTION("Adiantum length-preserving encryption mode"); MODULE_LICENSE("GPL v2"); -- 2.47.3
