aboutsummaryrefslogtreecommitdiffstats
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
commit88f1d316b9d0a213a9590fb5da6a72c0ec7012de (patch)
tree8df6af6269256b744c914e81f0a5a9ab84d4b370 /crypto/drbg.c
parentcrypto: rsa - return raw integers for the ASN.1 parser (diff)
downloadlinux-dev-88f1d316b9d0a213a9590fb5da6a72c0ec7012de.tar.xz
linux-dev-88f1d316b9d0a213a9590fb5da6a72c0ec7012de.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 ded86385ab6e..8b39f509f0a6 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);