summaryrefslogtreecommitdiff
path: root/crypto/drbg.c
diff options
context:
space:
mode:
authorWu Fengguang <fengguang.wu@intel.com>2016-06-15 19:13:25 +0800
committerHerbert Xu <herbert@gondor.apana.org.au>2016-06-20 19:24:36 +0800
commite67b2e6dea5cd453d5b43dc6bc8338c6b78da814 (patch)
treeeb3f48b90c1b0e705e8769d1a662ba581cc68562 /crypto/drbg.c
parent6eb4272f570c5050b4b512361d1d0c15754b37f2 (diff)
downloadlinux-crypto-e67b2e6dea5cd453d5b43dc6bc8338c6b78da814.tar.gz
linux-crypto-e67b2e6dea5cd453d5b43dc6bc8338c6b78da814.zip
crypto: drbg - fix semicolon.cocci warnings
crypto/drbg.c:1637:39-40: Unneeded semicolon Remove unneeded semicolon. Generated by: scripts/coccinelle/misc/semicolon.cocci CC: Stephan Mueller <smueller@chronox.de> Signed-off-by: Fengguang Wu <fengguang.wu@intel.com> Acked-by: Stephan Mueller <smueller@chronox.de> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto/drbg.c')
-rw-r--r--crypto/drbg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/drbg.c b/crypto/drbg.c
index ded86385..8b39f509 100644
--- a/crypto/drbg.c
+++ b/crypto/drbg.c
@@ -1632,7 +1632,7 @@ static int drbg_fini_sym_kernel(struct drbg_state *drbg)
drbg->ctr_handle = NULL;
if (drbg->ctr_req)
- skcipher_request_free(drbg->ctr_req);;
+ skcipher_request_free(drbg->ctr_req);
drbg->ctr_req = NULL;
kfree(drbg->ctr_null_value_buf);