All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH -next 1/2] gpio: idt3243x: Fix an ignored error return from platform_get_irq()
@ 2022-01-19  1:04 Yang Li
  2022-01-19  1:04 ` [PATCH -next 2/2] gpio: mpc8xxx: " Yang Li
  2022-01-20  8:07 ` [PATCH -next 1/2] gpio: idt3243x: " Bartosz Golaszewski
  0 siblings, 2 replies; 4+ messages in thread
From: Yang Li @ 2022-01-19  1:04 UTC (permalink / raw)
  To: linus.walleij
  Cc: brgl, linmq006, linux-gpio, linux-kernel, Yang Li, Abaci Robot

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>
---
 drivers/gpio/gpio-idt3243x.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/gpio/gpio-idt3243x.c b/drivers/gpio/gpio-idt3243x.c
index 08493b05be2d..52b8b72ded77 100644
--- a/drivers/gpio/gpio-idt3243x.c
+++ b/drivers/gpio/gpio-idt3243x.c
@@ -132,7 +132,7 @@ static int idt_gpio_probe(struct platform_device *pdev)
 	struct device *dev = &pdev->dev;
 	struct gpio_irq_chip *girq;
 	struct idt_gpio_ctrl *ctrl;
-	unsigned int parent_irq;
+	int parent_irq;
 	int ngpios;
 	int ret;
 
-- 
2.20.1.7.g153144c


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [PATCH -next 2/2] gpio: mpc8xxx: Fix an ignored error return from platform_get_irq()
  2022-01-19  1:04 [PATCH -next 1/2] gpio: idt3243x: Fix an ignored error return from platform_get_irq() Yang Li
@ 2022-01-19  1:04 ` Yang Li
  2022-01-20  8:07   ` Bartosz Golaszewski
  2022-01-20  8:07 ` [PATCH -next 1/2] gpio: idt3243x: " Bartosz Golaszewski
  1 sibling, 1 reply; 4+ messages in thread
From: Yang Li @ 2022-01-19  1:04 UTC (permalink / raw)
  To: linus.walleij
  Cc: brgl, linmq006, linux-gpio, linux-kernel, Yang Li, Abaci Robot

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 'irqn', so making 'irqn' an int.

Eliminate the following coccicheck warning:
./drivers/gpio/gpio-mpc8xxx.c:391:5-21: WARNING: Unsigned expression
compared with zero: mpc8xxx_gc -> irqn < 0

Reported-by: Abaci Robot <abaci@linux.alibaba.com>
Fixes: 0b39536cc699 ("gpio: mpc8xxx: Fix IRQ check in mpc8xxx_probe")
Signed-off-by: Yang Li <yang.lee@linux.alibaba.com>
---
 drivers/gpio/gpio-mpc8xxx.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/gpio/gpio-mpc8xxx.c b/drivers/gpio/gpio-mpc8xxx.c
index 01634c8d27b3..a964e25ea620 100644
--- a/drivers/gpio/gpio-mpc8xxx.c
+++ b/drivers/gpio/gpio-mpc8xxx.c
@@ -47,7 +47,7 @@ struct mpc8xxx_gpio_chip {
 				unsigned offset, int value);
 
 	struct irq_domain *irq;
-	unsigned int irqn;
+	int irqn;
 };
 
 /*
-- 
2.20.1.7.g153144c


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH -next 1/2] gpio: idt3243x: Fix an ignored error return from platform_get_irq()
  2022-01-19  1:04 [PATCH -next 1/2] gpio: idt3243x: Fix an ignored error return from platform_get_irq() Yang Li
  2022-01-19  1:04 ` [PATCH -next 2/2] gpio: mpc8xxx: " Yang Li
@ 2022-01-20  8:07 ` Bartosz Golaszewski
  1 sibling, 0 replies; 4+ messages in thread
From: Bartosz Golaszewski @ 2022-01-20  8:07 UTC (permalink / raw)
  To: Yang Li
  Cc: Linus Walleij, Miaoqian Lin, open list:GPIO SUBSYSTEM,
	Linux Kernel Mailing List, Abaci Robot

On Wed, Jan 19, 2022 at 2:04 AM Yang Li <yang.lee@linux.alibaba.com> wrote:
>
> 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>
> ---
>  drivers/gpio/gpio-idt3243x.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/gpio/gpio-idt3243x.c b/drivers/gpio/gpio-idt3243x.c
> index 08493b05be2d..52b8b72ded77 100644
> --- a/drivers/gpio/gpio-idt3243x.c
> +++ b/drivers/gpio/gpio-idt3243x.c
> @@ -132,7 +132,7 @@ static int idt_gpio_probe(struct platform_device *pdev)
>         struct device *dev = &pdev->dev;
>         struct gpio_irq_chip *girq;
>         struct idt_gpio_ctrl *ctrl;
> -       unsigned int parent_irq;
> +       int parent_irq;
>         int ngpios;
>         int ret;
>
> --
> 2.20.1.7.g153144c
>

Queued for fixes, thanks!

Bart

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH -next 2/2] gpio: mpc8xxx: Fix an ignored error return from platform_get_irq()
  2022-01-19  1:04 ` [PATCH -next 2/2] gpio: mpc8xxx: " Yang Li
@ 2022-01-20  8:07   ` Bartosz Golaszewski
  0 siblings, 0 replies; 4+ messages in thread
From: Bartosz Golaszewski @ 2022-01-20  8:07 UTC (permalink / raw)
  To: Yang Li
  Cc: Linus Walleij, Miaoqian Lin, open list:GPIO SUBSYSTEM,
	Linux Kernel Mailing List, Abaci Robot

On Wed, Jan 19, 2022 at 2:04 AM Yang Li <yang.lee@linux.alibaba.com> wrote:
>
> 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 'irqn', so making 'irqn' an int.
>
> Eliminate the following coccicheck warning:
> ./drivers/gpio/gpio-mpc8xxx.c:391:5-21: WARNING: Unsigned expression
> compared with zero: mpc8xxx_gc -> irqn < 0
>
> Reported-by: Abaci Robot <abaci@linux.alibaba.com>
> Fixes: 0b39536cc699 ("gpio: mpc8xxx: Fix IRQ check in mpc8xxx_probe")
> Signed-off-by: Yang Li <yang.lee@linux.alibaba.com>
> ---
>  drivers/gpio/gpio-mpc8xxx.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/gpio/gpio-mpc8xxx.c b/drivers/gpio/gpio-mpc8xxx.c
> index 01634c8d27b3..a964e25ea620 100644
> --- a/drivers/gpio/gpio-mpc8xxx.c
> +++ b/drivers/gpio/gpio-mpc8xxx.c
> @@ -47,7 +47,7 @@ struct mpc8xxx_gpio_chip {
>                                 unsigned offset, int value);
>
>         struct irq_domain *irq;
> -       unsigned int irqn;
> +       int irqn;
>  };
>
>  /*
> --
> 2.20.1.7.g153144c
>

Queued for fixes, thanks!

Bart

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2022-01-20  8:07 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-01-19  1:04 [PATCH -next 1/2] gpio: idt3243x: Fix an ignored error return from platform_get_irq() Yang Li
2022-01-19  1:04 ` [PATCH -next 2/2] gpio: mpc8xxx: " Yang Li
2022-01-20  8:07   ` Bartosz Golaszewski
2022-01-20  8:07 ` [PATCH -next 1/2] gpio: idt3243x: " Bartosz Golaszewski

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.