Apply Crypto API wrappers to the exported crypto symbol in CONFIG_CRYPTO_XTS-related crypto to convert them into pluggable interface.
Signed-off-by: Jay Wang <[email protected]> --- crypto/Makefile | 2 +- crypto/xts.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/crypto/Makefile b/crypto/Makefile index 73c700538792..33e4e3a03c40 100644 --- a/crypto/Makefile +++ b/crypto/Makefile @@ -93,7 +93,7 @@ crypto-objs-$(CONFIG_CRYPTO_CBC) += cbc.o crypto-objs-$(CONFIG_CRYPTO_PCBC) += pcbc.o crypto-objs-$(CONFIG_CRYPTO_CTS) += cts.o crypto-objs-$(CONFIG_CRYPTO_LRW) += lrw.o -obj-$(CONFIG_CRYPTO_XTS) += xts.o +crypto-objs-$(CONFIG_CRYPTO_XTS) += xts.o crypto-objs-$(CONFIG_CRYPTO_CTR) += ctr.o obj-$(CONFIG_CRYPTO_XCTR) += xctr.o obj-$(CONFIG_CRYPTO_HCTR2) += hctr2.o diff --git a/crypto/xts.c b/crypto/xts.c index 3da8f5e053d6..97e499893292 100644 --- a/crypto/xts.c +++ b/crypto/xts.c @@ -466,8 +466,8 @@ static void __exit xts_module_exit(void) crypto_unregister_template(&xts_tmpl); } -module_init(xts_module_init); -module_exit(xts_module_exit); +crypto_module_init(xts_module_init); +crypto_module_exit(xts_module_exit); MODULE_LICENSE("GPL"); MODULE_DESCRIPTION("XTS block cipher mode"); -- 2.47.3
