From: Lee Jones <lee.jones@linaro.org>
To: linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH] backlight: adp8860: fix another uninitialized variable use
Date: Mon, 11 Jan 2016 07:57:40 +0000 [thread overview]
Message-ID: <20160111075740.GP3331@x1> (raw)
In-Reply-To: <3284846.T0rzz6n1As@wuerfel>
On Mon, 30 Nov 2015, Arnd Bergmann wrote:
> A recent patch I did fixed two potential uses of uninitialized
> variables in the adp8870 and adp8860 drivers. Unfortunately,
> I missed another one:
>
> drivers/video/backlight/adp8860_bl.c: In function 'adp8860_bl_ambient_light_level_show':
> drivers/video/backlight/adp8860_bl.c:570:11: warning: 'reg_val' may be used uninitialized in this function
>
> This does the same change as before in one additional function,
> and also changes the check for the return value in a way that
> avoids another false positive warning with a similar message.
>
> Signed-off-by: Arnd Bergmann <arnd@arndb.de>
> Fixes: 6be3a5a9cd91 ("backlight: adp88x0: Fix uninitialized variable use")
> ---
> Sorry for missing this third hunk the first time around.
Where's your diff?
Applied anyway, thanks.
> diff --git a/drivers/video/backlight/adp8860_bl.c b/drivers/video/backlight/adp8860_bl.c
> index f0d4c0324580..510e559c060e 100644
> --- a/drivers/video/backlight/adp8860_bl.c
> +++ b/drivers/video/backlight/adp8860_bl.c
> @@ -566,11 +566,13 @@ static ssize_t adp8860_bl_ambient_light_level_show(struct device *dev,
>
> mutex_lock(&data->lock);
> error = adp8860_read(data->client, ADP8860_PH1LEVL, ®_val);
> - ret_val = reg_val;
> - error |= adp8860_read(data->client, ADP8860_PH1LEVH, ®_val);
> + if (!error) {
> + ret_val = reg_val;
> + error = adp8860_read(data->client, ADP8860_PH1LEVH, ®_val);
> + }
> mutex_unlock(&data->lock);
>
> - if (error < 0)
> + if (error)
> return error;
>
> /* Return 13-bit conversion value for the first light sensor */
>
--
Lee Jones
Linaro STMicroelectronics Landing Team Lead
Linaro.org │ Open source software for ARM SoCs
Follow Linaro: Facebook | Twitter | Blog
WARNING: multiple messages have this Message-ID (diff)
From: lee.jones@linaro.org (Lee Jones)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH] backlight: adp8860: fix another uninitialized variable use
Date: Mon, 11 Jan 2016 07:57:40 +0000 [thread overview]
Message-ID: <20160111075740.GP3331@x1> (raw)
In-Reply-To: <3284846.T0rzz6n1As@wuerfel>
On Mon, 30 Nov 2015, Arnd Bergmann wrote:
> A recent patch I did fixed two potential uses of uninitialized
> variables in the adp8870 and adp8860 drivers. Unfortunately,
> I missed another one:
>
> drivers/video/backlight/adp8860_bl.c: In function 'adp8860_bl_ambient_light_level_show':
> drivers/video/backlight/adp8860_bl.c:570:11: warning: 'reg_val' may be used uninitialized in this function
>
> This does the same change as before in one additional function,
> and also changes the check for the return value in a way that
> avoids another false positive warning with a similar message.
>
> Signed-off-by: Arnd Bergmann <arnd@arndb.de>
> Fixes: 6be3a5a9cd91 ("backlight: adp88x0: Fix uninitialized variable use")
> ---
> Sorry for missing this third hunk the first time around.
Where's your diff?
Applied anyway, thanks.
> diff --git a/drivers/video/backlight/adp8860_bl.c b/drivers/video/backlight/adp8860_bl.c
> index f0d4c0324580..510e559c060e 100644
> --- a/drivers/video/backlight/adp8860_bl.c
> +++ b/drivers/video/backlight/adp8860_bl.c
> @@ -566,11 +566,13 @@ static ssize_t adp8860_bl_ambient_light_level_show(struct device *dev,
>
> mutex_lock(&data->lock);
> error = adp8860_read(data->client, ADP8860_PH1LEVL, ®_val);
> - ret_val = reg_val;
> - error |= adp8860_read(data->client, ADP8860_PH1LEVH, ®_val);
> + if (!error) {
> + ret_val = reg_val;
> + error = adp8860_read(data->client, ADP8860_PH1LEVH, ®_val);
> + }
> mutex_unlock(&data->lock);
>
> - if (error < 0)
> + if (error)
> return error;
>
> /* Return 13-bit conversion value for the first light sensor */
>
--
Lee Jones
Linaro STMicroelectronics Landing Team Lead
Linaro.org ? Open source software for ARM SoCs
Follow Linaro: Facebook | Twitter | Blog
WARNING: multiple messages have this Message-ID (diff)
From: Lee Jones <lee.jones@linaro.org>
To: Arnd Bergmann <arnd@arndb.de>
Cc: Michael Hennerich <michael.hennerich@analog.com>,
Jingoo Han <jingoohan1@gmail.com>,
linux-fbdev@vger.kernel.org, linux-kernel@vger.kernel.org,
linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH] backlight: adp8860: fix another uninitialized variable use
Date: Mon, 11 Jan 2016 07:57:40 +0000 [thread overview]
Message-ID: <20160111075740.GP3331@x1> (raw)
In-Reply-To: <3284846.T0rzz6n1As@wuerfel>
On Mon, 30 Nov 2015, Arnd Bergmann wrote:
> A recent patch I did fixed two potential uses of uninitialized
> variables in the adp8870 and adp8860 drivers. Unfortunately,
> I missed another one:
>
> drivers/video/backlight/adp8860_bl.c: In function 'adp8860_bl_ambient_light_level_show':
> drivers/video/backlight/adp8860_bl.c:570:11: warning: 'reg_val' may be used uninitialized in this function
>
> This does the same change as before in one additional function,
> and also changes the check for the return value in a way that
> avoids another false positive warning with a similar message.
>
> Signed-off-by: Arnd Bergmann <arnd@arndb.de>
> Fixes: 6be3a5a9cd91 ("backlight: adp88x0: Fix uninitialized variable use")
> ---
> Sorry for missing this third hunk the first time around.
Where's your diff?
Applied anyway, thanks.
> diff --git a/drivers/video/backlight/adp8860_bl.c b/drivers/video/backlight/adp8860_bl.c
> index f0d4c0324580..510e559c060e 100644
> --- a/drivers/video/backlight/adp8860_bl.c
> +++ b/drivers/video/backlight/adp8860_bl.c
> @@ -566,11 +566,13 @@ static ssize_t adp8860_bl_ambient_light_level_show(struct device *dev,
>
> mutex_lock(&data->lock);
> error = adp8860_read(data->client, ADP8860_PH1LEVL, ®_val);
> - ret_val = reg_val;
> - error |= adp8860_read(data->client, ADP8860_PH1LEVH, ®_val);
> + if (!error) {
> + ret_val = reg_val;
> + error = adp8860_read(data->client, ADP8860_PH1LEVH, ®_val);
> + }
> mutex_unlock(&data->lock);
>
> - if (error < 0)
> + if (error)
> return error;
>
> /* Return 13-bit conversion value for the first light sensor */
>
--
Lee Jones
Linaro STMicroelectronics Landing Team Lead
Linaro.org │ Open source software for ARM SoCs
Follow Linaro: Facebook | Twitter | Blog
next prev parent reply other threads:[~2016-01-11 7:57 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-11-30 11:24 [PATCH] backlight: adp8860: fix another uninitialized variable use Arnd Bergmann
2015-11-30 11:24 ` Arnd Bergmann
2015-11-30 11:24 ` Arnd Bergmann
2015-12-01 9:32 ` Michael Hennerich
2015-12-01 9:32 ` Michael Hennerich
2015-12-01 9:32 ` Michael Hennerich
2015-12-22 12:44 ` Jingoo Han
2015-12-22 12:44 ` Jingoo Han
2015-12-22 12:44 ` Jingoo Han
2016-01-11 7:57 ` Lee Jones [this message]
2016-01-11 7:57 ` Lee Jones
2016-01-11 7:57 ` Lee Jones
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20160111075740.GP3331@x1 \
--to=lee.jones@linaro.org \
--cc=linux-arm-kernel@lists.infradead.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.