aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGustavo A. R. Silva <gustavo@embeddedor.com>2017-08-09 12:09:33 -0400
committerLinus Walleij <linus.walleij@linaro.org>2017-08-22 08:24:37 -0400
commit2e6424ab852a24cac6d918f3ee002e57febe02c3 (patch)
tree8f17e24224a52b7a859695061883cb8f6fade693
parenta96f50e66c16449c39b1bee34daf97c7ce2bba1d (diff)
pinctrl: amd: fix error return code in amd_gpio_probe()
platform_get_irq() returns an error code, but the pinctrl-amd driver ignores it and always returns -EINVAL. This is not correct and, prevents -EPROBE_DEFER from being propagated properly. Print and propagate the return value of platform_get_irq on failure. This issue was detected with the help of Coccinelle. Signed-off-by: Gustavo A. R. Silva <gustavo@embeddedor.com> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
-rw-r--r--drivers/pinctrl/pinctrl-amd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/pinctrl/pinctrl-amd.c b/drivers/pinctrl/pinctrl-amd.c
index e6779d4352a2..38af1ec2df0c 100644
--- a/drivers/pinctrl/pinctrl-amd.c
+++ b/drivers/pinctrl/pinctrl-amd.c
@@ -760,8 +760,8 @@ static int amd_gpio_probe(struct platform_device *pdev)
760 760
761 irq_base = platform_get_irq(pdev, 0); 761 irq_base = platform_get_irq(pdev, 0);
762 if (irq_base < 0) { 762 if (irq_base < 0) {
763 dev_err(&pdev->dev, "Failed to get gpio IRQ.\n"); 763 dev_err(&pdev->dev, "Failed to get gpio IRQ: %d\n", irq_base);
764 return -EINVAL; 764 return irq_base;
765 } 765 }
766 766
767 gpio_dev->pdev = pdev; 767 gpio_dev->pdev = pdev;