From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754952AbbHYBzQ (ORCPT ); Mon, 24 Aug 2015 21:55:16 -0400 Received: from kvm5.telegraphics.com.au ([98.124.60.144]:49848 "EHLO kvm5.telegraphics.com.au" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752773AbbHYBzP (ORCPT ); Mon, 24 Aug 2015 21:55:15 -0400 Date: Tue, 25 Aug 2015 11:54:55 +1000 (AEST) From: Finn Thain To: Rudhresh cc: linux-scsi@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH] SCSI: dtc: Fixed a brace issue on return 0 In-Reply-To: <1435491896-9755-1-git-send-email-rudhresh.jk@gmail.com> Message-ID: References: <1435491896-9755-1-git-send-email-rudhresh.jk@gmail.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Sun, 28 Jun 2015, Rudhresh wrote: > From: rudhresh > > Return is not a function so parenthesis is not required > > Signed-off-by: Rudhresh Can you put your full name here? You must address your patches to all of the interested parties (see scripts/get_maintainer.pl). Please read Documentation/SubmittingPatches and adhere to the instructions therein. -- > > --- > drivers/scsi/dtc.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/drivers/scsi/dtc.c b/drivers/scsi/dtc.c > index 4c74c7b..c793ecf 100644 > --- a/drivers/scsi/dtc.c > +++ b/drivers/scsi/dtc.c > @@ -363,7 +363,7 @@ static inline int NCR5380_pread(struct Scsi_Host *instance, unsigned char *dst, > NCR5380_read(RESET_PARITY_INTERRUPT_REG); > if (i > hostdata->spin_max_r) > hostdata->spin_max_r = i; > - return (0); > + return 0; > } > > /**************************************************************** > @@ -417,7 +417,7 @@ static inline int NCR5380_pwrite(struct Scsi_Host *instance, unsigned char *src, > rtrc(0); > if (i > hostdata->spin_max_w) > hostdata->spin_max_w = i; > - return (0); > + return 0; > } > > MODULE_LICENSE("GPL"); >