Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

Revert "gpio: pca953x: initialize ret to zero to avoid returning garbage"

This reverts commit 313b9a9938bf4076425741121d5d766826793e5d.

This was already fixed by
commit bf62efeb164343916ebb89dca6dfe5e6b6751700
"gpio: pca954x: fix undefined error code from remove"

The latter is a better fix since it makes it easier to detect
erronous code by not assigning a default error code.

Reported-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>

+1 -1
+1 -1
drivers/gpio/gpio-pca953x.c
··· 848 848 { 849 849 struct pca953x_platform_data *pdata = dev_get_platdata(&client->dev); 850 850 struct pca953x_chip *chip = i2c_get_clientdata(client); 851 - int ret = 0; 851 + int ret; 852 852 853 853 if (pdata && pdata->teardown) { 854 854 ret = pdata->teardown(client, chip->gpio_chip.base,