summaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorLinus Walleij <linus.walleij@linaro.org>2015-12-21 10:40:27 -0500
committerLinus Walleij <linus.walleij@linaro.org>2015-12-26 16:28:41 -0500
commit39e24ac3c309545f1308f0a5d770322b426339ab (patch)
tree17220e9e041599dd01537407a09db736aca851bb /drivers
parentb9164f049339006fafe8a52396e0f1997552214a (diff)
pinctrl: sunxi: Be sure to clamp return value
As we want gpio_chip .get() calls to be able to return negative error codes and propagate to drivers, we need to go over all drivers and make sure their return values are clamped to [0,1]. We do this by using the ret = !!(val) design pattern. Cc: Maxime Ripard <maxime.ripard@free-electrons.com> Acked-by: Chen-Yu Tsai <wens@csie.org> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/pinctrl/sunxi/pinctrl-sunxi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pinctrl/sunxi/pinctrl-sunxi.c b/drivers/pinctrl/sunxi/pinctrl-sunxi.c
index a437e4f8628b..c53a2dbdb5cf 100644
--- a/drivers/pinctrl/sunxi/pinctrl-sunxi.c
+++ b/drivers/pinctrl/sunxi/pinctrl-sunxi.c
@@ -469,7 +469,7 @@ static int sunxi_pinctrl_gpio_get(struct gpio_chip *chip, unsigned offset)
469 if (set_mux) 469 if (set_mux)
470 sunxi_pmx_set(pctl->pctl_dev, offset, SUN4I_FUNC_IRQ); 470 sunxi_pmx_set(pctl->pctl_dev, offset, SUN4I_FUNC_IRQ);
471 471
472 return val; 472 return !!val;
473} 473}
474 474
475static void sunxi_pinctrl_gpio_set(struct gpio_chip *chip, 475static void sunxi_pinctrl_gpio_set(struct gpio_chip *chip,