public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [RFC] fpga: socfpga: Fix check of return value of devm_request_irq
@ 2015-10-22 19:12 Moritz Fischer
  2015-10-22 19:24 ` atull
  0 siblings, 1 reply; 3+ messages in thread
From: Moritz Fischer @ 2015-10-22 19:12 UTC (permalink / raw)
  To: atull; +Cc: linux-kernel, Moritz Fischer

The return value should be checked for non-zero, instead
of checking it being IS_ERR_VALUE().

Signed-off-by: Moritz Fischer <moritz.fischer@ettus.com>
---
 drivers/fpga/socfpga.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/fpga/socfpga.c b/drivers/fpga/socfpga.c
index 706b80d..27d2ff2 100644
--- a/drivers/fpga/socfpga.c
+++ b/drivers/fpga/socfpga.c
@@ -577,7 +577,7 @@ static int socfpga_fpga_probe(struct platform_device *pdev)
 
 	ret = devm_request_irq(dev, priv->irq, socfpga_fpga_isr, 0,
 			       dev_name(dev), priv);
-	if (IS_ERR_VALUE(ret))
+	if (ret)
 		return ret;
 
 	return fpga_mgr_register(dev, "Altera SOCFPGA FPGA Manager",
-- 
2.4.3


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

end of thread, other threads:[~2015-10-25 10:00 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-10-22 19:12 [RFC] fpga: socfpga: Fix check of return value of devm_request_irq Moritz Fischer
2015-10-22 19:24 ` atull
2015-10-25 10:00   ` Josh Cartwright

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox