Commit 96956aef authored by Fengguang Wu's avatar Fengguang Wu Committed by Herbert Xu

crypto: drbg - drbg_exit() can be static

CC: Stephan Mueller <smueller@chronox.de>
Signed-off-by: default avatarFengguang Wu <fengguang.wu@intel.com>
Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
parent ac1a2b49
...@@ -2019,7 +2019,7 @@ static int __init drbg_init(void) ...@@ -2019,7 +2019,7 @@ static int __init drbg_init(void)
return crypto_register_algs(drbg_algs, (ARRAY_SIZE(drbg_cores) * 2)); return crypto_register_algs(drbg_algs, (ARRAY_SIZE(drbg_cores) * 2));
} }
void __exit drbg_exit(void) static void __exit drbg_exit(void)
{ {
crypto_unregister_algs(drbg_algs, (ARRAY_SIZE(drbg_cores) * 2)); crypto_unregister_algs(drbg_algs, (ARRAY_SIZE(drbg_cores) * 2));
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment