projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ac1a2b4
)
crypto: drbg - drbg_exit() can be static
author
Fengguang Wu
<fengguang.wu@intel.com>
Thu, 10 Jul 2014 08:52:04 +0000
(16:52 +0800)
committer
Herbert Xu
<herbert@gondor.apana.org.au>
Thu, 10 Jul 2014 08:52:04 +0000
(16:52 +0800)
CC: Stephan Mueller <smueller@chronox.de>
Signed-off-by: Fengguang Wu <fengguang.wu@intel.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
crypto/drbg.c
patch
|
blob
|
history
diff --git
a/crypto/drbg.c
b/crypto/drbg.c
index 84478cb8d02a721b231ddc9544ef1f27d9dba52b..ff975d9e0c2a575c1151117e170e096a7f55aa56 100644
(file)
--- a/
crypto/drbg.c
+++ b/
crypto/drbg.c
@@
-2019,7
+2019,7
@@
static int __init drbg_init(void)
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));
}