mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-04 00:06:36 +00:00
gpio: ftgpio010: Fix platform_get_irq's error checking
The platform_get_irq() function returns negative if an error occurs. zero or positive number on success. platform_get_irq() error checking for zero is not correct. Signed-off-by: Arvind Yadav <arvind.yadav.cs@gmail.com> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
This commit is contained in:
parent
1b43d26985
commit
4070a53496
1 changed files with 2 additions and 2 deletions
|
@ -176,8 +176,8 @@ static int ftgpio_gpio_probe(struct platform_device *pdev)
|
|||
return PTR_ERR(g->base);
|
||||
|
||||
irq = platform_get_irq(pdev, 0);
|
||||
if (!irq)
|
||||
return -EINVAL;
|
||||
if (irq <= 0)
|
||||
return irq ? irq : -EINVAL;
|
||||
|
||||
ret = bgpio_init(&g->gc, dev, 4,
|
||||
g->base + GPIO_DATA_IN,
|
||||
|
|
Loading…
Add table
Reference in a new issue