diff options
author | Andrey Gusakov <[email protected]> | 2021-09-23 20:22:16 +0300 |
---|---|---|
committer | Bartosz Golaszewski <[email protected]> | 2021-09-29 20:40:15 +0200 |
commit | 540cffbab8b8e6c52a4121666ca18d6e94586ed2 (patch) | |
tree | d571d6022f90aef4d3e54b4e0c7a85b44546258d | |
parent | 5816b3e6577eaa676ceb00a848f0fd65fe2adc29 (diff) |
gpio: pca953x: do not ignore i2c errors
Per gpio_chip interface, error shall be proparated to the caller.
Attempt to silent diagnostics by returning zero (as written in the
comment) is plain wrong, because the zero return can be interpreted by
the caller as the gpio value.
Cc: [email protected]
Signed-off-by: Andrey Gusakov <[email protected]>
Signed-off-by: Nikita Yushchenko <[email protected]>
Signed-off-by: Bartosz Golaszewski <[email protected]>
-rw-r--r-- | drivers/gpio/gpio-pca953x.c | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/drivers/gpio/gpio-pca953x.c b/drivers/gpio/gpio-pca953x.c index f5cfc0698799..8ebf369b3ba0 100644 --- a/drivers/gpio/gpio-pca953x.c +++ b/drivers/gpio/gpio-pca953x.c @@ -468,15 +468,8 @@ static int pca953x_gpio_get_value(struct gpio_chip *gc, unsigned off) mutex_lock(&chip->i2c_lock); ret = regmap_read(chip->regmap, inreg, ®_val); mutex_unlock(&chip->i2c_lock); - if (ret < 0) { - /* - * NOTE: - * diagnostic already emitted; that's all we should - * do unless gpio_*_value_cansleep() calls become different - * from their nonsleeping siblings (and report faults). - */ - return 0; - } + if (ret < 0) + return ret; return !!(reg_val & bit); } |