Apply Crypto API wrappers to the exported crypto symbol in CONFIG_CRYPTO_USER_API_SKCIPHER-related crypto to convert them into pluggable interface.
Signed-off-by: Jay Wang <[email protected]> --- crypto/Makefile | 2 +- crypto/algif_skcipher.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/crypto/Makefile b/crypto/Makefile index 5c363d865b45..a7ad0f5dd1d9 100644 --- a/crypto/Makefile +++ b/crypto/Makefile @@ -174,7 +174,7 @@ obj-$(CONFIG_CRYPTO_BENCHMARK) += tcrypt.o crypto-objs-$(CONFIG_CRYPTO_GHASH) += ghash-generic.o crypto-objs-$(CONFIG_CRYPTO_USER_API) += af_alg.o obj-$(CONFIG_CRYPTO_USER_API_HASH) += algif_hash.o -obj-$(CONFIG_CRYPTO_USER_API_SKCIPHER) += algif_skcipher.o +crypto-objs-$(CONFIG_CRYPTO_USER_API_SKCIPHER) += algif_skcipher.o obj-$(CONFIG_CRYPTO_USER_API_RNG) += algif_rng.o obj-$(CONFIG_CRYPTO_USER_API_AEAD) += algif_aead.o obj-$(CONFIG_CRYPTO_ZSTD) += zstd.o diff --git a/crypto/algif_skcipher.c b/crypto/algif_skcipher.c index 125d395c5e00..8fbfb6c7ba14 100644 --- a/crypto/algif_skcipher.c +++ b/crypto/algif_skcipher.c @@ -435,7 +435,7 @@ static void __exit algif_skcipher_exit(void) BUG_ON(err); } -module_init(algif_skcipher_init); -module_exit(algif_skcipher_exit); +crypto_module_init(algif_skcipher_init); +crypto_module_exit(algif_skcipher_exit); MODULE_DESCRIPTION("Userspace interface for skcipher algorithms"); MODULE_LICENSE("GPL"); -- 2.47.3
