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] [day] [month] [year] [list]
Message-ID: <20230617191658.2ee5e82b@jic23-huawei>
Date:   Sat, 17 Jun 2023 19:16:58 +0100
From:   Jonathan Cameron <jic23@...nel.org>
To:     Markus Burri <markus.burri@...com>
Cc:     linux-kernel@...r.kernel.org, Lars-Peter Clausen <lars@...afoo.de>,
        Michael Hennerich <Michael.Hennerich@...log.com>,
        linux-iio@...r.kernel.org
Subject: Re: [PATCH v3] iio: ado: ad7192: Add error check and more debug log

On Wed, 14 Jun 2023 09:30:33 +0200
Markus Burri <markus.burri@...com> wrote:

> Print read and expected device ID as debug warning.
> Add error check for ad_sd_init() result.
> 
> Signed-off-by: Markus Burri <markus.burri@...com>
Hi Markus,

I've applied this to the togreg branch of iio.git which is initially pushed out
as testing for 0-day to see if it can find anything we missed.

A few things wrong process wise that I fixed.
1) Nuno had given a tag on v2.  You should have added that to your v3 rather
   than relying on the maintainer happening to remember it (which I only did
   because of 2.
2) The patch title still has 'ado' not 'adi'

So stuff to keep in mind for next time!

Jonathan
  
> ---
>  drivers/iio/adc/ad7192.c | 8 +++++---
>  1 file changed, 5 insertions(+), 3 deletions(-)
> 
> diff --git a/drivers/iio/adc/ad7192.c b/drivers/iio/adc/ad7192.c
> index d71977b..220c3b7 100644
> --- a/drivers/iio/adc/ad7192.c
> +++ b/drivers/iio/adc/ad7192.c
> @@ -403,8 +403,8 @@ static int ad7192_setup(struct ad7192_state *st, struct device_node *np)
>  	id &= AD7192_ID_MASK;
>  
>  	if (id != st->chip_info->chip_id)
> -		dev_warn(&st->sd.spi->dev, "device ID query failed (0x%X)\n",
> -			 id);
> +		dev_warn(&st->sd.spi->dev, "device ID query failed (0x%X != 0x%X)\n",
> +			 id, st->chip_info->chip_id);
>  
>  	st->mode = AD7192_MODE_SEL(AD7192_MODE_IDLE) |
>  		AD7192_MODE_CLKSRC(st->clock_sel) |
> @@ -1049,7 +1049,9 @@ static int ad7192_probe(struct spi_device *spi)
>  	else
>  		indio_dev->info = &ad7192_info;
>  
> -	ad_sd_init(&st->sd, indio_dev, spi, &ad7192_sigma_delta_info);
> +	ret = ad_sd_init(&st->sd, indio_dev, spi, &ad7192_sigma_delta_info);
> +	if (ret)
> +		return ret;
>  
>  	ret = devm_ad_sd_setup_buffer_and_trigger(&spi->dev, indio_dev);
>  	if (ret)

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ