Apply Crypto API wrappers to the exported crypto symbol in CONFIG_CRYPTO_ANUBIS-related crypto to convert them into pluggable interface.
Signed-off-by: Jay Wang <[email protected]> --- crypto/Makefile | 2 +- crypto/anubis.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/crypto/Makefile b/crypto/Makefile index 87f1b0e315f2..fb863dcef44f 100644 --- a/crypto/Makefile +++ b/crypto/Makefile @@ -144,7 +144,7 @@ crypto-objs-$(CONFIG_CRYPTO_CAST6) += cast6_generic.o crypto-objs-$(CONFIG_CRYPTO_ARC4) += arc4.o crypto-objs-$(CONFIG_CRYPTO_TEA) += tea.o crypto-objs-$(CONFIG_CRYPTO_KHAZAD) += khazad.o -obj-$(CONFIG_CRYPTO_ANUBIS) += anubis.o +crypto-objs-$(CONFIG_CRYPTO_ANUBIS) += anubis.o obj-$(CONFIG_CRYPTO_SEED) += seed.o obj-$(CONFIG_CRYPTO_ARIA) += aria_generic.o crypto-objs-$(CONFIG_CRYPTO_CHACHA20) += chacha.o diff --git a/crypto/anubis.c b/crypto/anubis.c index 4b01b6ec961a..3d179d739fbd 100644 --- a/crypto/anubis.c +++ b/crypto/anubis.c @@ -691,8 +691,8 @@ static void __exit anubis_mod_fini(void) crypto_unregister_alg(&anubis_alg); } -module_init(anubis_mod_init); -module_exit(anubis_mod_fini); +crypto_module_init(anubis_mod_init); +crypto_module_exit(anubis_mod_fini); MODULE_LICENSE("GPL"); MODULE_DESCRIPTION("Anubis Cryptographic Algorithm"); -- 2.47.3
