public inbox for linux-i2c@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] i2c: busses: fix uninit-value in pci1xxxx_i2c_xfer
@ 2024-10-22 19:08 Suraj Sonawane
  2024-10-23 23:02 ` Andi Shyti
  0 siblings, 1 reply; 3+ messages in thread
From: Suraj Sonawane @ 2024-10-22 19:08 UTC (permalink / raw)
  To: tharunkumar.pasumarthi, kumaravel.thiagarajan
  Cc: UNGLinuxDriver, andi.shyti, linux-i2c, linux-kernel,
	Suraj Sonawane

Fix an issue reported by the smatch static analysis tool:
drivers/i2c/busses/i2c-mchp-pci1xxxx.c:1030 pci1xxxx_i2c_xfer() error:
uninitialized symbol 'retval'.

The error occurs because retval may be used without being set if the
transfer loop does not execute (e.g., when num is 0). This could cause
the function to return an undefined value, leading to unpredictable
behavior.

Initialize retval to 0 before the transfer loop to ensure that the
function returns a valid value even if no transfers are processed. This
change also preserves proper error handling within the loop.

Signed-off-by: Suraj Sonawane <surajsonawane0215@gmail.com>
---
 drivers/i2c/busses/i2c-mchp-pci1xxxx.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/i2c/busses/i2c-mchp-pci1xxxx.c b/drivers/i2c/busses/i2c-mchp-pci1xxxx.c
index 5ef136c3e..4dfa11650 100644
--- a/drivers/i2c/busses/i2c-mchp-pci1xxxx.c
+++ b/drivers/i2c/busses/i2c-mchp-pci1xxxx.c
@@ -994,7 +994,7 @@ static int pci1xxxx_i2c_xfer(struct i2c_adapter *adap,
 {
 	struct pci1xxxx_i2c *i2c = i2c_get_adapdata(adap);
 	u8 slaveaddr;
-	int retval;
+	int retval = 0;
 	u32 i;
 
 	i2c->i2c_xfer_in_progress = true;
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2024-10-26  7:39 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-10-22 19:08 [PATCH] i2c: busses: fix uninit-value in pci1xxxx_i2c_xfer Suraj Sonawane
2024-10-23 23:02 ` Andi Shyti
2024-10-26  7:39   ` Suraj Sonawane

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox