[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <20190401150106.GB21317@kroah.com>
Date: Mon, 1 Apr 2019 17:01:06 +0200
From: Greg KH <gregkh@...uxfoundation.org>
To: Will Cunningham <wjcunningham7@...il.com>
Cc: abbotti@....co.uk, hsweeten@...ionengravers.com,
devel@...verdev.osuosl.org, linux-kernel@...r.kernel.org,
mojha@...eaurora.org
Subject: Re: [PATCH v2] Staging: comedi: drivers: pcl818: Fixed a coding
style error.
On Mon, Apr 01, 2019 at 10:01:30AM -0400, Will Cunningham wrote:
> Removed unnecessary parentheses.
>
> Signed-off-by: Will Cunningham <wjcunningham7@...il.com>
> ---
> Changes in v2:
> - Removed a typo from the commit message.
> ---
> drivers/staging/comedi/drivers/pcl818.c | 8 ++++----
> 1 file changed, 4 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/staging/comedi/drivers/pcl818.c b/drivers/staging/comedi/drivers/pcl818.c
> index 0af5315d4357..da5d53a288f7 100644
> --- a/drivers/staging/comedi/drivers/pcl818.c
> +++ b/drivers/staging/comedi/drivers/pcl818.c
> @@ -1012,7 +1012,7 @@ static int pcl818_attach(struct comedi_device *dev, struct comedi_devconfig *it)
> pcl818_alloc_dma(dev, it->options[2]);
>
> /* use 1MHz or 10MHz oscilator */
> - if ((it->options[3] == 0) || (it->options[3] == 10))
> + if (it->options[3] == 0 || it->options[3] == 10)
Again, no, the original is best.
thanks,
greg k-h
Powered by blists - more mailing lists