[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <20190908123822.7a17b7cc@archlinux>
Date: Sun, 8 Sep 2019 12:38:22 +0100
From: Jonathan Cameron <jic23@...nel.org>
To: Colin King <colin.king@...onical.com>
Cc: Kevin Tsai <ktsai@...ellamicro.com>,
Hartmut Knaack <knaack.h@....de>,
Lars-Peter Clausen <lars@...afoo.de>,
Peter Meerwald-Stadler <pmeerw@...erw.net>,
linux-iio@...r.kernel.org, kernel-janitors@...r.kernel.org,
linux-kernel@...r.kernel.org
Subject: Re: [PATCH] iio: light: cm36651: redundant assignment to variable
ret
On Sun, 1 Sep 2019 16:27:49 +0100
Colin King <colin.king@...onical.com> wrote:
> From: Colin Ian King <colin.king@...onical.com>
>
> Variable ret is being assigned a value that is never read and
> is being re-assigned a little later on. The assignment is redundant
> and hence can be removed.
>
> Addresses-Coverity: ("Ununsed value")
> Signed-off-by: Colin Ian King <colin.king@...onical.com>
Applied to the togreg branch of iio.git and pushed out as testing
for the autobuilders to do not much with it.
Thanks,
Jonathan
> ---
> drivers/iio/light/cm36651.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/iio/light/cm36651.c b/drivers/iio/light/cm36651.c
> index 1019d625adb1..90e38fcc974b 100644
> --- a/drivers/iio/light/cm36651.c
> +++ b/drivers/iio/light/cm36651.c
> @@ -532,7 +532,7 @@ static int cm36651_write_prox_event_config(struct iio_dev *indio_dev,
> int state)
> {
> struct cm36651_data *cm36651 = iio_priv(indio_dev);
> - int cmd, ret = -EINVAL;
> + int cmd, ret;
>
> mutex_lock(&cm36651->lock);
>
Powered by blists - more mailing lists