Apply Crypto API wrappers to the exported crypto symbol in CONFIG_CRYPTO_USER_API_RNG-related crypto to convert them into pluggable interface.
Signed-off-by: Jay Wang <[email protected]> --- crypto/Makefile | 2 +- crypto/algif_rng.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/crypto/Makefile b/crypto/Makefile index 13d0ee856885..9d96e67cdfdf 100644 --- a/crypto/Makefile +++ b/crypto/Makefile @@ -175,7 +175,7 @@ crypto-objs-$(CONFIG_CRYPTO_GHASH) += ghash-generic.o crypto-objs-$(CONFIG_CRYPTO_USER_API) += af_alg.o crypto-objs-$(CONFIG_CRYPTO_USER_API_HASH) += algif_hash.o crypto-objs-$(CONFIG_CRYPTO_USER_API_SKCIPHER) += algif_skcipher.o -obj-$(CONFIG_CRYPTO_USER_API_RNG) += algif_rng.o +crypto-objs-$(CONFIG_CRYPTO_USER_API_RNG) += algif_rng.o obj-$(CONFIG_CRYPTO_USER_API_AEAD) += algif_aead.o obj-$(CONFIG_CRYPTO_ZSTD) += zstd.o crypto-objs-$(CONFIG_CRYPTO_ECC) += ecc.o diff --git a/crypto/algif_rng.c b/crypto/algif_rng.c index 1a86e40c8372..1604b164d973 100644 --- a/crypto/algif_rng.c +++ b/crypto/algif_rng.c @@ -335,5 +335,5 @@ static void __exit rng_exit(void) BUG_ON(err); } -module_init(rng_init); -module_exit(rng_exit); +crypto_module_init(rng_init); +crypto_module_exit(rng_exit); -- 2.47.3
