lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date: Mon, 03 Jun 2024 15:00:21 +0200
From: Nuno Sá <noname.nuno@...il.com>
To: Jonathan Cameron <jic23@...nel.org>, Dumitru Ceclan via B4 Relay
	 <devnull+dumitru.ceclan.analog.com@...nel.org>
Cc: dumitru.ceclan@...log.com, Lars-Peter Clausen <lars@...afoo.de>, Michael
 Hennerich <Michael.Hennerich@...log.com>, Rob Herring <robh@...nel.org>,
 Krzysztof Kozlowski <krzysztof.kozlowski+dt@...aro.org>, Conor Dooley
 <conor+dt@...nel.org>,  David Lechner <dlechner@...libre.com>,
 linux-iio@...r.kernel.org, devicetree@...r.kernel.org, 
 linux-kernel@...r.kernel.org, Dumitru Ceclan <mitrutzceclan@...il.com>
Subject: Re: [PATCH v4 3/6] iio: adc: ad7173: refactor ain and vref selection

On Sat, 2024-06-01 at 19:49 +0100, Jonathan Cameron wrote:
> On Fri, 31 May 2024 22:42:29 +0300
> Dumitru Ceclan via B4 Relay <devnull+dumitru.ceclan.analog.com@...nel.org> wrote:
> 
> > From: Dumitru Ceclan <dumitru.ceclan@...log.com>
> > 
> > Move validation of analog inputs and reference voltage selection to
> > separate functions to reduce the size of the channel config parsing
> > function and improve readability.
> > Add defines for the number of analog inputs in a channel.
> > 
> > Reviewed-by: David Lechner <dlechner@...libre.com>
> > Signed-off-by: Dumitru Ceclan <dumitru.ceclan@...log.com>
> > ---
> >  drivers/iio/adc/ad7173.c | 71 ++++++++++++++++++++++++++++++++++--------------
> >  1 file changed, 50 insertions(+), 21 deletions(-)
> > 
> > diff --git a/drivers/iio/adc/ad7173.c b/drivers/iio/adc/ad7173.c
> > index 6e249628bc64..a20831d99aa5 100644
> > --- a/drivers/iio/adc/ad7173.c
> > +++ b/drivers/iio/adc/ad7173.c
> > @@ -60,6 +60,7 @@
> >  #define AD7173_CH_SETUP_AINPOS_MASK	GENMASK(9, 5)
> >  #define AD7173_CH_SETUP_AINNEG_MASK	GENMASK(4, 0)
> >  
> > +#define AD7173_NO_AINS_PER_CHANNEL	2
> >  #define AD7173_CH_ADDRESS(pos, neg) \
> >  	(FIELD_PREP(AD7173_CH_SETUP_AINPOS_MASK, pos) | \
> >  	 FIELD_PREP(AD7173_CH_SETUP_AINNEG_MASK, neg))
> > @@ -623,6 +624,7 @@ static int ad7173_setup(struct iio_dev *indio_dev)
> >  static unsigned int ad7173_get_ref_voltage_milli(struct ad7173_state *st,
> >  						 u8 reference_select)
> >  {
> > +	struct device *dev = &st->sd.spi->dev;
> >  	int vref;
> >  
> >  	switch (reference_select) {
> > @@ -646,9 +648,11 @@ static unsigned int ad7173_get_ref_voltage_milli(struct
> > ad7173_state *st,
> >  		return -EINVAL;
> >  	}
> >  
> > -	if (vref < 0)
> > +	if (vref < 0) {
> > +		dev_err(dev, "Cannot use reference %u. Error:%d\n",
> > +			reference_select, vref);
> >  		return vref;
> > -
> > +	}
> >  	return vref / (MICRO / MILLI);
> >  }
> >  
> > @@ -905,13 +909,50 @@ static int ad7173_register_clk_provider(struct iio_dev
> > *indio_dev)
> >  					   &st->int_clk_hw);
> >  }
> >  
> > +static int ad7173_validate_voltage_ain_inputs(struct ad7173_state *st,
> > +					      const unsigned int
> > ain[AD7173_NO_AINS_PER_CHANNEL])
> I was late to the game in replying to previous thread.
> 
> This is neater without the loop and with 2 parameters.  Anyhow see reply to v3.
> 

Yeps, even more given that we're passing/copying the complete array which always
fells awkward to me :)

- Nuno Sá



Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ