Re: [PATCH v6 3/5] iio: adc: ad7949: add vref selection support

From: Liam Beguin
Date: Mon Aug 16 2021 - 08:42:00 EST


On Mon Aug 16, 2021 at 4:04 AM EDT, Andy Shevchenko wrote:
> On Mon, Aug 16, 2021 at 12:35 AM Liam Beguin <liambeguin@xxxxxxxxx>
> wrote:
> >
> > From: Liam Beguin <lvb@xxxxxxxxxx>
> >
> > Add support for selecting the voltage reference from the devicetree.
> >
> > This change is required to get valid readings with all three
> > vref hardware configurations supported by the ADC.
> >
> > For instance if the ADC isn't provided with an external reference,
> > the sample request must specify an internal voltage reference to get a
> > valid reading.
>
> ...
>
> > + /* Setup internal voltage reference */
> > + tmp = 4096000;
> > + ret = device_property_read_u32(dev, "adi,internal-ref-microvolt", &tmp);
>
> > + if (ret < 0 && ret != -EINVAL) {

Hi Andy,

>
> What does this check (second part) is supposed to mean?
> The first part will make it mandatory, is it the goal?
>

device_property_read_u32() will return -EINVAL if the property isn't
found in the devicetree.

This checks for errors when the property is defined while keeping it
optional.

Liam

> > + dev_err(dev, "invalid value for adi,internal-ref-microvolt\n");
> > + return ret;
> > + }
>
> --
> With Best Regards,
> Andy Shevchenko