linux-gpio.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] gpio: pca953x: initialize ret to zero to avoid returning garbage
@ 2016-09-09  8:31 Colin King
  2016-09-12 13:40 ` Linus Walleij
  0 siblings, 1 reply; 7+ messages in thread
From: Colin King @ 2016-09-09  8:31 UTC (permalink / raw)
  To: Linus Walleij, Alexandre Courbot, linux-gpio; +Cc: linux-kernel

From: Colin Ian King <colin.king@canonical.com>

ret is not initialized so it contains garbage.  Ensure garbage
is not returned in the case that pdata && pdata->teardown is false
by initializing ret to 0.

Signed-off-by: Colin Ian King <colin.king@canonical.com>
---
 drivers/gpio/gpio-pca953x.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/gpio/gpio-pca953x.c b/drivers/gpio/gpio-pca953x.c
index cbe2824..52f3d5c 100644
--- a/drivers/gpio/gpio-pca953x.c
+++ b/drivers/gpio/gpio-pca953x.c
@@ -845,7 +845,7 @@ static int pca953x_remove(struct i2c_client *client)
 {
 	struct pca953x_platform_data *pdata = dev_get_platdata(&client->dev);
 	struct pca953x_chip *chip = i2c_get_clientdata(client);
-	int ret;
+	int ret = 0;
 
 	if (pdata && pdata->teardown) {
 		ret = pdata->teardown(client, chip->gpio_chip.base,
-- 
2.9.3


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

end of thread, other threads:[~2016-09-13 12:46 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-09-09  8:31 [PATCH] gpio: pca953x: initialize ret to zero to avoid returning garbage Colin King
2016-09-12 13:40 ` Linus Walleij
2016-09-13  4:04   ` Phil Reid
2016-09-13 11:49     ` Linus Walleij
2016-09-13 12:31     ` Arnd Bergmann
2016-09-13 12:46       ` Linus Walleij
2016-09-13 12:45         ` Colin Ian King

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).