Re: [PATCH] iio: adc: ti-ads124s08: Drop unused parameter to ads124s_read()

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On Sun, 26 Jun 2022 16:38:28 +0100
Jonathan Cameron <jic23@xxxxxxxxxx> wrote:

> From: Jonathan Cameron <Jonathan.Cameron@xxxxxxxxxx>
> 
> The channel number is never used in this call, so don't pass it in.
> 
> Signed-off-by: Jonathan Cameron <Jonathan.Cameron@xxxxxxxxxx>

This one is so trivial I've picked it up without pestering anyone for review.

Thanks,

Jonathan

> ---
>  drivers/iio/adc/ti-ads124s08.c | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)
> 
> diff --git a/drivers/iio/adc/ti-ads124s08.c b/drivers/iio/adc/ti-ads124s08.c
> index 64833156c199..4ca62121f0d1 100644
> --- a/drivers/iio/adc/ti-ads124s08.c
> +++ b/drivers/iio/adc/ti-ads124s08.c
> @@ -193,7 +193,7 @@ static int ads124s_reset(struct iio_dev *indio_dev)
>  	return 0;
>  };
>  
> -static int ads124s_read(struct iio_dev *indio_dev, unsigned int chan)
> +static int ads124s_read(struct iio_dev *indio_dev)
>  {
>  	struct ads124s_private *priv = iio_priv(indio_dev);
>  	int ret;
> @@ -242,7 +242,7 @@ static int ads124s_read_raw(struct iio_dev *indio_dev,
>  			goto out;
>  		}
>  
> -		ret = ads124s_read(indio_dev, chan->channel);
> +		ret = ads124s_read(indio_dev);
>  		if (ret < 0) {
>  			dev_err(&priv->spi->dev, "Read ADC failed\n");
>  			goto out;
> @@ -290,7 +290,7 @@ static irqreturn_t ads124s_trigger_handler(int irq, void *p)
>  		if (ret)
>  			dev_err(&priv->spi->dev, "Start ADC conversions failed\n");
>  
> -		priv->buffer[j] = ads124s_read(indio_dev, scan_index);
> +		priv->buffer[j] = ads124s_read(indio_dev);
>  		ret = ads124s_write_cmd(indio_dev, ADS124S08_STOP_CONV);
>  		if (ret)
>  			dev_err(&priv->spi->dev, "Stop ADC conversions failed\n");




[Index of Archives]     [Linux USB Devel]     [Video for Linux]     [Linux Audio Users]     [Yosemite News]     [Linux Input]     [Linux Kernel]     [Linux SCSI]     [X.org]

  Powered by Linux