diff options
author | Pan Bian <bianpan2016@163.com> | 2017-11-12 10:52:02 -0500 |
---|---|---|
committer | Sebastian Reichel <sebastian.reichel@collabora.co.uk> | 2017-11-13 05:56:12 -0500 |
commit | 838c8afa67f98014970c9f56107805e767ed87ad (patch) | |
tree | 60faf31c3ca8e32304d500efbe2ba975a693746f | |
parent | 33a7067732cf1b86b5dc672cfa9bbc15460117e5 (diff) |
power: supply: cpcap-charger: fix incorrect return value check
Function platform_get_irq_byname() returns a negative error code on
failure, and a zero or positive number on success. However, in function
cpcap_usb_init_irq(), positive IRQ numbers are also taken as error
cases. Use "if (irq < 0)" instead of "if (!irq)" to validate the return
value of platform_get_irq_byname().
Signed-off-by: Pan Bian <bianpan2016@163.com>
Signed-off-by: Sebastian Reichel <sebastian.reichel@collabora.co.uk>
-rw-r--r-- | drivers/power/supply/cpcap-charger.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/power/supply/cpcap-charger.c b/drivers/power/supply/cpcap-charger.c index 11a07633de6c..e4905bef2663 100644 --- a/drivers/power/supply/cpcap-charger.c +++ b/drivers/power/supply/cpcap-charger.c | |||
@@ -484,7 +484,7 @@ static int cpcap_usb_init_irq(struct platform_device *pdev, | |||
484 | int irq, error; | 484 | int irq, error; |
485 | 485 | ||
486 | irq = platform_get_irq_byname(pdev, name); | 486 | irq = platform_get_irq_byname(pdev, name); |
487 | if (!irq) | 487 | if (irq < 0) |
488 | return -ENODEV; | 488 | return -ENODEV; |
489 | 489 | ||
490 | error = devm_request_threaded_irq(ddata->dev, irq, NULL, | 490 | error = devm_request_threaded_irq(ddata->dev, irq, NULL, |