gpio: idt3243x: Fix an ignored error return from platform_get_irq()
authorYang Li <yang.lee@linux.alibaba.com>
Wed, 19 Jan 2022 01:04:31 +0000 (09:04 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 8 Feb 2022 17:34:14 +0000 (18:34 +0100)
commit3d631a1af0d73c3338c4bc8b5964abc457e04d89
tree288108bf82de2bd40b2696df44299f8b41d4533c
parentff43b75eea3246fb1cabe7d65df8a4d964f9ff7a
gpio: idt3243x: Fix an ignored error return from platform_get_irq()

commit 7c1cf55577782725ea2bc24687767c8fe8e57486 upstream.

The return from the call to platform_get_irq() is int, it can be
a negative error code, however this is being assigned to an unsigned
int variable 'parent_irq', so making 'parent_irq' an int.

Eliminate the following coccicheck warning:
./drivers/gpio/gpio-idt3243x.c:167:6-16: WARNING: Unsigned expression
compared with zero: parent_irq < 0

Reported-by: Abaci Robot <abaci@linux.alibaba.com>
Fixes: 30fee1d7462a ("gpio: idt3243x: Fix IRQ check in idt_gpio_probe")
Signed-off-by: Yang Li <yang.lee@linux.alibaba.com>
Signed-off-by: Bartosz Golaszewski <brgl@bgdev.pl>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/gpio/gpio-idt3243x.c