linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/3 v3] mfd: ipaq-micro: Fix platform_get_irq's error checking
@ 2017-11-19  4:26 Arvind Yadav
  2017-11-19  4:26 ` [PATCH 3/3 v3] mfd: sun4i-gpadc: Handle return value of platform_get_irq Arvind Yadav
  2020-08-27  7:36 ` [PATCH 1/3 v3] mfd: ipaq-micro: Fix platform_get_irq's error checking Krzysztof Kozlowski
  0 siblings, 2 replies; 3+ messages in thread
From: Arvind Yadav @ 2017-11-19  4:26 UTC (permalink / raw)
  To: linux-arm-kernel

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>
---
changes in v2 :
              Add failure case '<= 0' instead of '< 0'. If IRQ0 is not valid.
changes in v3 :
              return -EINVAL insted of irq.

 drivers/mfd/ipaq-micro.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/mfd/ipaq-micro.c b/drivers/mfd/ipaq-micro.c
index cd762d0..176cf65 100644
--- a/drivers/mfd/ipaq-micro.c
+++ b/drivers/mfd/ipaq-micro.c
@@ -410,7 +410,7 @@ static int __init micro_probe(struct platform_device *pdev)
 	micro_reset_comm(micro);
 
 	irq = platform_get_irq(pdev, 0);
-	if (!irq)
+	if (irq <= 0)
 		return -EINVAL;
 	ret = devm_request_irq(&pdev->dev, irq, micro_serial_isr,
 			       IRQF_SHARED, "ipaq-micro",
-- 
2.7.4

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

end of thread, other threads:[~2020-08-27  7:38 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-11-19  4:26 [PATCH 1/3 v3] mfd: ipaq-micro: Fix platform_get_irq's error checking Arvind Yadav
2017-11-19  4:26 ` [PATCH 3/3 v3] mfd: sun4i-gpadc: Handle return value of platform_get_irq Arvind Yadav
2020-08-27  7:36 ` [PATCH 1/3 v3] mfd: ipaq-micro: Fix platform_get_irq's error checking Krzysztof Kozlowski

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).