linux-iio.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Ivan Mikhaylov <i.mikhaylov@yadro.com>
To: Andy Shevchenko <andy.shevchenko@gmail.com>
Cc: Jonathan Cameron <jic23@kernel.org>,
	Hartmut Knaack <knaack.h@gmx.de>,
	Lars-Peter Clausen <lars@metafoo.de>,
	Peter Meerwald-Stadler <pmeerw@pmeerw.net>,
	linux-iio <linux-iio@vger.kernel.org>,
	Linux Kernel Mailing List <linux-kernel@vger.kernel.org>,
	devicetree <devicetree@vger.kernel.org>,
	Mark Rutland <mark.rutland@arm.com>,
	Rob Herring <robh+dt@kernel.org>
Subject: Re: [PATCH v5 2/2] iio: proximity: Add driver support for vcnl3020 proximity sensor
Date: Tue, 31 Mar 2020 19:56:18 +0300	[thread overview]
Message-ID: <86186f02c630a05cf7254a38e0f15d726e2f440b.camel@yadro.com> (raw)
In-Reply-To: <CAHp75VexS-iVeDXsCFqgzCKokgzzeH=BFtUqOJdY+kS8O6B9bw@mail.gmail.com>

On Tue, 2020-03-31 at 14:00 +0300, Andy Shevchenko wrote:
> > > Why not to use standard pattern, i.e.
> > > 
> > >   if (rc)
> > >     return rc;
> > >   ...
> > >   rc = regmap_write(...);
> > > 
> > > ?
> > 
> > Optional parameter. There exists a lot of ways to do it:
> 
> I'm simple reading the code. And I believe the above I suggested is
> cleaner equivalent.
> Is it?
> 
> > rc = device_property_read_u32(dev, "milliamp", &led_current);
> > rc = regmap_write(regmap, VCNL_LED_CURRENT, (!rc) : led_current ? 0);
> 
> This seems not equal to above.

Yes, it is not equal. Error will be returned in case of non existent parameter
in vcnl3020_init but parameter is optional. rc shouldn't be checked or should
return 0 with your suggestion.

rc = device_property_read_u32(...);
if (rc)
	return 0;
rc = regmap_write(...);
if (rc)
	dev_err(...);
return rc;


  reply	other threads:[~2020-03-31 16:56 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-03-30 15:27 [PATCH v5 0/2] iio: proximity: driver for vcnl3020 Ivan Mikhaylov
2020-03-30 15:27 ` [PATCH v5 1/2] iio: proximity: provide device tree binding document Ivan Mikhaylov
2020-03-30 15:27 ` [PATCH v5 2/2] iio: proximity: Add driver support for vcnl3020 proximity sensor Ivan Mikhaylov
2020-03-30 19:07   ` Andy Shevchenko
2020-03-30 20:41     ` Ivan Mikhaylov
2020-03-31 11:00       ` Andy Shevchenko
2020-03-31 16:56         ` Ivan Mikhaylov [this message]
2020-03-31 17:21           ` Andy Shevchenko

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=86186f02c630a05cf7254a38e0f15d726e2f440b.camel@yadro.com \
    --to=i.mikhaylov@yadro.com \
    --cc=andy.shevchenko@gmail.com \
    --cc=devicetree@vger.kernel.org \
    --cc=jic23@kernel.org \
    --cc=knaack.h@gmx.de \
    --cc=lars@metafoo.de \
    --cc=linux-iio@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mark.rutland@arm.com \
    --cc=pmeerw@pmeerw.net \
    --cc=robh+dt@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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).