Apply Crypto API wrappers to the exported crypto symbol in CONFIG_CRYPTO_AEGIS128-related crypto to convert them into pluggable interface.
Signed-off-by: Jay Wang <[email protected]> --- crypto/Makefile | 2 +- crypto/aegis128-core.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/crypto/Makefile b/crypto/Makefile index f71f2359ce08..cb1761303151 100644 --- a/crypto/Makefile +++ b/crypto/Makefile @@ -101,7 +101,7 @@ crypto-objs-$(CONFIG_CRYPTO_ADIANTUM) += adiantum.o crypto-objs-$(CONFIG_CRYPTO_GCM) += gcm.o crypto-objs-$(CONFIG_CRYPTO_CCM) += ccm.o crypto-objs-$(CONFIG_CRYPTO_CHACHA20POLY1305) += chacha20poly1305.o -obj-$(CONFIG_CRYPTO_AEGIS128) += aegis128.o +crypto-objs-$(CONFIG_CRYPTO_AEGIS128) += aegis128.o aegis128-y := aegis128-core.o ifeq ($(ARCH),arm) diff --git a/crypto/aegis128-core.c b/crypto/aegis128-core.c index ca80d861345d..2c8dfafcfdc8 100644 --- a/crypto/aegis128-core.c +++ b/crypto/aegis128-core.c @@ -566,8 +566,8 @@ static void __exit crypto_aegis128_module_exit(void) crypto_unregister_aead(&crypto_aegis128_alg_generic); } -module_init(crypto_aegis128_module_init); -module_exit(crypto_aegis128_module_exit); +crypto_module_init(crypto_aegis128_module_init); +crypto_module_exit(crypto_aegis128_module_exit); MODULE_LICENSE("GPL"); MODULE_AUTHOR("Ondrej Mosnacek <[email protected]>"); -- 2.47.3
