Message ID | 1435491896-9755-1-git-send-email-rudhresh.jk@gmail.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
On Sun, 28 Jun 2015, Rudhresh wrote: > From: rudhresh <rudhresh.jk@gmail.com> > > Return is not a function so parenthesis is not required > > Signed-off-by: Rudhresh <rudhresh.jk@gmail.com> 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.
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");