aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndy Shevchenko <[email protected]>2017-02-23 10:31:54 +0000
committerChanwoo Choi <[email protected]>2017-03-13 03:39:30 +0000
commitbafa687dccbe16cbf9b1824409836d79d6dc6543 (patch)
treeb4d70ab2ac488937f435204731848d11c24e38e9
parentLinux 4.11-rc2 (diff)
downloadkernel-bafa687dccbe16cbf9b1824409836d79d6dc6543.tar.gz
kernel-bafa687dccbe16cbf9b1824409836d79d6dc6543.zip
extcon: int3496: Propagate error code of gpiod_to_irq()
gpiod_to_irq() doesn't return 0. Thus, we just adjust condition and replace -EINVAL by actual error code it returns. Signed-off-by: Andy Shevchenko <[email protected]> Signed-off-by: Chanwoo Choi <[email protected]>
-rw-r--r--drivers/extcon/extcon-intel-int3496.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/extcon/extcon-intel-int3496.c b/drivers/extcon/extcon-intel-int3496.c
index a3131b036de6..38eb6cab938f 100644
--- a/drivers/extcon/extcon-intel-int3496.c
+++ b/drivers/extcon/extcon-intel-int3496.c
@@ -100,9 +100,9 @@ static int int3496_probe(struct platform_device *pdev)
}
data->usb_id_irq = gpiod_to_irq(data->gpio_usb_id);
- if (data->usb_id_irq <= 0) {
+ if (data->usb_id_irq < 0) {
dev_err(dev, "can't get USB ID IRQ: %d\n", data->usb_id_irq);
- return -EINVAL;
+ return data->usb_id_irq;
}
data->gpio_vbus_en = devm_gpiod_get_index(dev, "vbus en",