From: Purva Yeshi <purvayeshi550@gmail.com>
To: David Lechner <dlechner@baylibre.com>,
cosmin.tanislav@analog.com, lars@metafoo.de,
Michael.Hennerich@analog.com, jic23@kernel.org
Cc: linux-iio@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] iio: addac: ad74115: Fix use of uninitialized variable rate
Date: Thu, 10 Apr 2025 23:07:43 +0530 [thread overview]
Message-ID: <b9add3a4-9ec8-489f-9390-29d6ed49ba14@gmail.com> (raw)
In-Reply-To: <1254dfd7-e872-4c65-bd17-8015e1b2eba4@baylibre.com>
On 10/04/25 20:21, David Lechner wrote:
> On 4/9/25 3:29 PM, Purva Yeshi wrote:
>> Fix Smatch-detected error:
>> drivers/iio/addac/ad74115.c:823 _ad74115_get_adc_code() error:
>> uninitialized symbol 'rate'.
>>
>> The variable rate was declared but not given any value before being used
>> in a division. If the code reached that point without setting rate, it
>> would cause unpredictable behavior.
>>
>> Declare and initialize 'rate' to zero inside the 'else' block where it is
>> used. This ensures 'rate' is always initialized before being passed to
>> DIV_ROUND_CLOSEST.
>>
>> Signed-off-by: Purva Yeshi <purvayeshi550@gmail.com>
>> ---
>> drivers/iio/addac/ad74115.c | 2 +-
>> 1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/drivers/iio/addac/ad74115.c b/drivers/iio/addac/ad74115.c
>> index a7e480f2472d..26770c68e5fa 100644
>> --- a/drivers/iio/addac/ad74115.c
>> +++ b/drivers/iio/addac/ad74115.c
>> @@ -814,7 +814,7 @@ static int _ad74115_get_adc_code(struct ad74115_state *st,
>> return -ETIMEDOUT;
>> } else {
>> unsigned int regval, wait_time;
>> - int rate;
>> + int rate = 0;
>>
>> ret = ad74115_get_adc_rate(st, channel, &rate);
>> if (ret < 0)
>
> I don't see how rate could be used uninitialized since we are
> returning the error if ad74115_get_adc_rate() fails.
>
> Also, initializing to 0 would then cause a divide by 0 error
> if that value was actually used later in the code.
Hi,
Thank you for the review and explanation.
Understood — since there's a risk of misuse later (like divide-by-zero),
it's best to leave it as is.
Best regards,
Purva
>
>
next prev parent reply other threads:[~2025-04-10 17:37 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-04-09 20:29 [PATCH] iio: addac: ad74115: Fix use of uninitialized variable rate Purva Yeshi
2025-04-10 14:51 ` David Lechner
2025-04-10 17:37 ` Purva Yeshi [this message]
2025-04-11 5:49 ` Nuno Sá
2025-04-11 9:09 ` Purva Yeshi
2025-04-11 12:17 ` Nuno Sá
2025-04-17 5:43 ` Purva Yeshi
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=b9add3a4-9ec8-489f-9390-29d6ed49ba14@gmail.com \
--to=purvayeshi550@gmail.com \
--cc=Michael.Hennerich@analog.com \
--cc=cosmin.tanislav@analog.com \
--cc=dlechner@baylibre.com \
--cc=jic23@kernel.org \
--cc=lars@metafoo.de \
--cc=linux-iio@vger.kernel.org \
--cc=linux-kernel@vger.kernel.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox