aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpio/gpio-davinci.c
diff options
context:
space:
mode:
authorKeerthy <j-keerthy@ti.com>2017-07-20 15:12:17 +0530
committerLinus Walleij <linus.walleij@linaro.org>2017-08-14 15:03:39 +0200
commit5e7a0ce7395ad65f71cfbc47d6dd6d6b329dab84 (patch)
tree3ac063eca503734ed423a986f0002db77ff823b6 /drivers/gpio/gpio-davinci.c
parentdt-bindings: gpio: davinci: Add keystone-k2g compatible (diff)
downloadlinux-dev-5e7a0ce7395ad65f71cfbc47d6dd6d6b329dab84.tar.xz
linux-dev-5e7a0ce7395ad65f71cfbc47d6dd6d6b329dab84.zip
gpio: davinci: Handle the return value of davinci_gpio_irq_setup function
Currently davinci_gpio_irq_setup return value is ignored. Handle the return value appropriately. Signed-off-by: Keerthy <j-keerthy@ti.com> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'drivers/gpio/gpio-davinci.c')
-rw-r--r--drivers/gpio/gpio-davinci.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers/gpio/gpio-davinci.c b/drivers/gpio/gpio-davinci.c
index 3fb970a74fd7..f75d8443ecaf 100644
--- a/drivers/gpio/gpio-davinci.c
+++ b/drivers/gpio/gpio-davinci.c
@@ -237,7 +237,10 @@ static int davinci_gpio_probe(struct platform_device *pdev)
goto err;
platform_set_drvdata(pdev, chips);
- davinci_gpio_irq_setup(pdev);
+ ret = davinci_gpio_irq_setup(pdev);
+ if (ret)
+ goto err;
+
return 0;
err: