Apply Crypto API wrappers to the exported crypto symbol in CONFIG_CRYPTO_USER-related crypto to convert them into pluggable interface.
Signed-off-by: Jay Wang <[email protected]> --- crypto/Makefile | 2 +- crypto/crypto_user.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/crypto/Makefile b/crypto/Makefile index 2e3704e67e14..390d38d17e4b 100644 --- a/crypto/Makefile +++ b/crypto/Makefile @@ -71,7 +71,7 @@ crypto-objs-$(CONFIG_CRYPTO_ACOMP2) += crypto_acompress.o cryptomgr-y := algboss.o testmgr.o crypto-objs-$(CONFIG_CRYPTO_MANAGER2) += cryptomgr.o -obj-$(CONFIG_CRYPTO_USER) += crypto_user.o +crypto-objs-$(CONFIG_CRYPTO_USER) += crypto_user.o crypto-objs-$(CONFIG_CRYPTO_CMAC) += cmac.o crypto-objs-$(CONFIG_CRYPTO_HMAC) += hmac.o obj-$(CONFIG_CRYPTO_XCBC) += xcbc.o diff --git a/crypto/crypto_user.c b/crypto/crypto_user.c index 3187e0d276f9..8d03a2ff24de 100644 --- a/crypto/crypto_user.c +++ b/crypto/crypto_user.c @@ -498,8 +498,8 @@ static void __exit crypto_user_exit(void) unregister_pernet_subsys(&crypto_netlink_net_ops); } -module_init(crypto_user_init); -module_exit(crypto_user_exit); +crypto_module_init(crypto_user_init); +crypto_module_exit(crypto_user_exit); MODULE_LICENSE("GPL"); MODULE_AUTHOR("Steffen Klassert <[email protected]>"); MODULE_DESCRIPTION("Crypto userspace configuration API"); -- 2.47.3
