From: Jonathan Cameron <jic23@kernel.org>
To: Sebastian Reichel <sre@kernel.org>
Cc: linux-iio@vger.kernel.org,
Jonathan Cameron <Jonathan.Cameron@huawei.com>
Subject: Re: [PATCH] iio: adc: tsl4030: Use false / true instead of 0 / 1 with booleans
Date: Tue, 22 Oct 2019 11:26:13 +0100 [thread overview]
Message-ID: <20191022112613.4d90f2a0@archlinux> (raw)
In-Reply-To: <20191020130644.jyd3zdnmxcgksdbs@earth.universe>
On Sun, 20 Oct 2019 15:06:44 +0200
Sebastian Reichel <sre@kernel.org> wrote:
> Hi,
>
> On Sun, Oct 13, 2019 at 05:37:54PM +0100, jic23@kernel.org wrote:
> > From: Jonathan Cameron <Jonathan.Cameron@huawei.com>
> >
> > Suggestion from coccinelle / coccicheck
> >
> > CHECK drivers/iio/adc/twl4030-madc.c
> > drivers/iio/adc/twl4030-madc.c:524:6-15: WARNING: Comparison of 0/1 to bool variable
> > drivers/iio/adc/twl4030-madc.c:655:1-43: WARNING: Assignment of 0/1 to bool variable
> > drivers/iio/adc/twl4030-madc.c:659:2-44: WARNING: Assignment of 0/1 to bool variable
> > drivers/iio/adc/twl4030-madc.c:664:1-43: WARNING: Assignment of 0/1 to bool variable
> > drivers/iio/adc/twl4030-madc.c:498:2-34: WARNING: Assignment of 0/1 to bool variable
> > drivers/iio/adc/twl4030-madc.c:510:2-19: WARNING: Assignment of 0/1 to bool variable
> > drivers/iio/adc/twl4030-madc.c:511:2-11: WARNING: Assignment of 0/1 to bool variable
> > drivers/iio/adc/twl4030-madc.c:531:2-19: WARNING: Assignment of 0/1 to bool variable
> > drivers/iio/adc/twl4030-madc.c:532:2-11: WARNING: Assignment of 0/1 to bool variable
> >
> > Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
> > Cc: Sebastian Reichel <sre@kernel.org>
> > ---
>
> Apart from the typo in the patch subject (tsl4030 vs twl4030):
>
Fixed :)
> Reviewed-by: Sebastian Reichel <sre@kernel.org>
Applied to the togreg branch of iio.git and pushed out as testing for the
autobuilders to poke at it.
Thanks,
Jonathan
>
> -- Sebastian
>
> > drivers/iio/adc/twl4030-madc.c | 18 +++++++++---------
> > 1 file changed, 9 insertions(+), 9 deletions(-)
> >
> > diff --git a/drivers/iio/adc/twl4030-madc.c b/drivers/iio/adc/twl4030-madc.c
> > index 55c5119fe575..472b08f37fea 100644
> > --- a/drivers/iio/adc/twl4030-madc.c
> > +++ b/drivers/iio/adc/twl4030-madc.c
> > @@ -495,7 +495,7 @@ static irqreturn_t twl4030_madc_threaded_irq_handler(int irq, void *_madc)
> > ret = twl4030_madc_disable_irq(madc, i);
> > if (ret < 0)
> > dev_dbg(madc->dev, "Disable interrupt failed %d\n", i);
> > - madc->requests[i].result_pending = 1;
> > + madc->requests[i].result_pending = true;
> > }
> > for (i = 0; i < TWL4030_MADC_NUM_METHODS; i++) {
> > r = &madc->requests[i];
> > @@ -507,8 +507,8 @@ static irqreturn_t twl4030_madc_threaded_irq_handler(int irq, void *_madc)
> > len = twl4030_madc_read_channels(madc, method->rbase,
> > r->channels, r->rbuf, r->raw);
> > /* Free request */
> > - r->result_pending = 0;
> > - r->active = 0;
> > + r->result_pending = false;
> > + r->active = false;
> > }
> > mutex_unlock(&madc->lock);
> >
> > @@ -521,15 +521,15 @@ static irqreturn_t twl4030_madc_threaded_irq_handler(int irq, void *_madc)
> > */
> > for (i = 0; i < TWL4030_MADC_NUM_METHODS; i++) {
> > r = &madc->requests[i];
> > - if (r->active == 0)
> > + if (!r->active)
> > continue;
> > method = &twl4030_conversion_methods[r->method];
> > /* Read results */
> > len = twl4030_madc_read_channels(madc, method->rbase,
> > r->channels, r->rbuf, r->raw);
> > /* Free request */
> > - r->result_pending = 0;
> > - r->active = 0;
> > + r->result_pending = false;
> > + r->active = false;
> > }
> > mutex_unlock(&madc->lock);
> >
> > @@ -652,16 +652,16 @@ static int twl4030_madc_conversion(struct twl4030_madc_request *req)
> > ret = twl4030_madc_start_conversion(twl4030_madc, req->method);
> > if (ret < 0)
> > goto out;
> > - twl4030_madc->requests[req->method].active = 1;
> > + twl4030_madc->requests[req->method].active = true;
> > /* Wait until conversion is ready (ctrl register returns EOC) */
> > ret = twl4030_madc_wait_conversion_ready(twl4030_madc, 5, method->ctrl);
> > if (ret) {
> > - twl4030_madc->requests[req->method].active = 0;
> > + twl4030_madc->requests[req->method].active = false;
> > goto out;
> > }
> > ret = twl4030_madc_read_channels(twl4030_madc, method->rbase,
> > req->channels, req->rbuf, req->raw);
> > - twl4030_madc->requests[req->method].active = 0;
> > + twl4030_madc->requests[req->method].active = false;
> >
> > out:
> > mutex_unlock(&twl4030_madc->lock);
> > --
> > 2.23.0
> >
prev parent reply other threads:[~2019-10-22 10:26 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-10-13 16:37 [PATCH] iio: adc: tsl4030: Use false / true instead of 0 / 1 with booleans jic23
2019-10-20 13:06 ` Sebastian Reichel
2019-10-22 10:26 ` Jonathan Cameron [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20191022112613.4d90f2a0@archlinux \
--to=jic23@kernel.org \
--cc=Jonathan.Cameron@huawei.com \
--cc=linux-iio@vger.kernel.org \
--cc=sre@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.