Skip to content

Commit

Permalink
power: supply: cpcap-charger: fix incorrect return value check
Browse files Browse the repository at this point in the history
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 <[email protected]>
Signed-off-by: Sebastian Reichel <[email protected]>
  • Loading branch information
SinkFinder authored and sre committed Nov 13, 2017
1 parent 33a7067 commit 838c8af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/power/supply/cpcap-charger.c
Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,7 @@ static int cpcap_usb_init_irq(struct platform_device *pdev,
int irq, error;

irq = platform_get_irq_byname(pdev, name);
if (!irq)
if (irq < 0)
return -ENODEV;

error = devm_request_threaded_irq(ddata->dev, irq, NULL,
Expand Down

0 comments on commit 838c8af

Please sign in to comment.