]> git.baikalelectronics.ru Git - kernel.git/commit
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)
committerBartosz Golaszewski <brgl@bgdev.pl>
Thu, 20 Jan 2022 08:05:46 +0000 (09:05 +0100)
commitfbc7b146e083c45ad44995ef801d77fe5a8eda09
tree09bd38c0d0a165f4a3879625de0f69c075aeba8f
parent7dcbc1e28a7451e8ec74865c46f74f4bca526e4b
gpio: idt3243x: Fix an ignored error return from platform_get_irq()

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: 7dcbc1e28a74 ("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>
drivers/gpio/gpio-idt3243x.c