From mboxrd@z Thu Jan 1 00:00:00 1970 From: Stephan Mueller Subject: Re: [PATCH] crypto: fix semicolon.cocci warnings Date: Wed, 15 Jun 2016 13:40:38 +0200 Message-ID: <19814211.e3bV7xaaMn@positron.chronox.de> References: <201606151923.o07hQ3Ki%fengguang.wu@intel.com> <20160615111325.GA68889@ivytown2> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7Bit Cc: kbuild-all@01.org, linux-crypto@vger.kernel.org, Herbert Xu To: kbuild test robot Return-path: Received: from mail.eperm.de ([89.247.134.16]:36528 "EHLO mail.eperm.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751903AbcFOLkm (ORCPT ); Wed, 15 Jun 2016 07:40:42 -0400 In-Reply-To: <20160615111325.GA68889@ivytown2> Sender: linux-crypto-owner@vger.kernel.org List-ID: Am Mittwoch, 15. Juni 2016, 19:13:25 schrieb kbuild test robot: Hi Fengguang, > crypto/drbg.c:1637:39-40: Unneeded semicolon > > > Remove unneeded semicolon. Thank you! > > Generated by: scripts/coccinelle/misc/semicolon.cocci > > CC: Stephan Mueller > Signed-off-by: Fengguang Wu Acked-by: Stephan Mueller > --- > > drbg.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > --- a/crypto/drbg.c > +++ b/crypto/drbg.c > @@ -1634,7 +1634,7 @@ static int drbg_fini_sym_kernel(struct d > 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); Ciao Stephan