Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751116AbdFTI2A (ORCPT ); Tue, 20 Jun 2017 04:28:00 -0400 Received: from aserp1040.oracle.com ([141.146.126.69]:34395 "EHLO aserp1040.oracle.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750863AbdFTI16 (ORCPT ); Tue, 20 Jun 2017 04:27:58 -0400 Date: Tue, 20 Jun 2017 11:27:39 +0300 From: Dan Carpenter To: Jhih-Ming Huang Cc: Gilad Ben-Yossef , Greg Kroah-Hartman , linux-crypto@vger.kernel.org, driverdev-devel@linuxdriverproject.org, devel@driverdev.osuosl.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH 05/11] Fix ERROR: space prohibited after that open parenthesis '(' Message-ID: <20170620082739.d647q2tlruk6vnbi@mwanda> References: <1497935984-4406-1-git-send-email-fbihjmeric@gmail.com> <1497936106-4673-1-git-send-email-fbihjmeric@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1497936106-4673-1-git-send-email-fbihjmeric@gmail.com> User-Agent: NeoMutt/20170113 (1.7.2) X-Source-IP: userv0022.oracle.com [156.151.31.74] Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 939 Lines: 27 On Tue, Jun 20, 2017 at 01:21:46PM +0800, Jhih-Ming Huang wrote: > From: Jhih-Ming Hunag > > Fixed "ERROR: space prohibited after that open parenthesis '('". > > Signed-off-by: Jhih-Ming Hunag > --- > drivers/staging/ccree/ssi_aead.c | 16 ++++++++-------- > 1 file changed, 8 insertions(+), 8 deletions(-) > > diff --git a/drivers/staging/ccree/ssi_aead.c b/drivers/staging/ccree/ssi_aead.c > index 6bcab5a..5166874 100644 > --- a/drivers/staging/ccree/ssi_aead.c > +++ b/drivers/staging/ccree/ssi_aead.c > @@ -1375,10 +1375,10 @@ static int validate_data_size(struct ssi_aead_ctx *ctx, > static unsigned int format_ccm_a0(u8 *pA0Buff, u32 headerSize) > { > unsigned int len = 0; > - if ( headerSize == 0 ) { > + if (headerSize == 0 ) { Remove the other space as well. I looked ahead in the series so I see that you do it later, but it should be done here. regards, dan carpenter