From: Vegard Nossum <[email protected]> Apply Crypto API wrappers to the exported crypto symbol in CONFIG_CRYPTO_CMAC-related crypto to convert them into pluggable interface.
Signed-off-by: Vegard Nossum <[email protected]> [add cmac.o into crypto-objs-y; revise commit message] Signed-off-by: Jay Wang <[email protected]> --- crypto/Makefile | 2 +- crypto/cmac.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/crypto/Makefile b/crypto/Makefile index 10cf1c6991fa..d37e00783f84 100644 --- a/crypto/Makefile +++ b/crypto/Makefile @@ -72,7 +72,7 @@ cryptomgr-y := algboss.o testmgr.o crypto-objs-$(CONFIG_CRYPTO_MANAGER2) += cryptomgr.o obj-$(CONFIG_CRYPTO_USER) += crypto_user.o -obj-$(CONFIG_CRYPTO_CMAC) += cmac.o +crypto-objs-$(CONFIG_CRYPTO_CMAC) += cmac.o obj-$(CONFIG_CRYPTO_HMAC) += hmac.o obj-$(CONFIG_CRYPTO_XCBC) += xcbc.o obj-$(CONFIG_CRYPTO_NULL) += crypto_null.o diff --git a/crypto/cmac.c b/crypto/cmac.c index 1b03964abe00..f898c4612312 100644 --- a/crypto/cmac.c +++ b/crypto/cmac.c @@ -251,8 +251,8 @@ static void __exit crypto_cmac_module_exit(void) crypto_unregister_template(&crypto_cmac_tmpl); } -module_init(crypto_cmac_module_init); -module_exit(crypto_cmac_module_exit); +crypto_module_init(crypto_cmac_module_init); +crypto_module_exit(crypto_cmac_module_exit); MODULE_LICENSE("GPL"); MODULE_DESCRIPTION("CMAC keyed hash algorithm"); -- 2.47.3
