All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drivers/i2c/busses/i2c-imx.c:remove duplicate print after platform_get_irq()
@ 2020-03-18 10:07 ` Tang Bin
  0 siblings, 0 replies; 10+ messages in thread
From: Tang Bin @ 2020-03-18 10:07 UTC (permalink / raw)
  To: linux, s.hauer
  Cc: shawnguo, linux-i2c, linux-arm-kernel, linux-kernel, Tang Bin

We don't need dev_err() message because when something goes wrong,
platform_get_irq() has print an error message itself, so we should
remove duplicate dev_err().

Signed-off-by: Tang Bin <tangbin@cmss.chinamobile.com>
---
 drivers/i2c/busses/i2c-imx.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/drivers/i2c/busses/i2c-imx.c b/drivers/i2c/busses/i2c-imx.c
index a3b61336f..01fd46682 100644
--- a/drivers/i2c/busses/i2c-imx.c
+++ b/drivers/i2c/busses/i2c-imx.c
@@ -1066,10 +1066,8 @@ static int i2c_imx_probe(struct platform_device *pdev)
 	dev_dbg(&pdev->dev, "<%s>\n", __func__);
 
 	irq = platform_get_irq(pdev, 0);
-	if (irq < 0) {
-		dev_err(&pdev->dev, "can't get irq number\n");
+	if (irq < 0)
 		return irq;
-	}
 
 	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
 	base = devm_ioremap_resource(&pdev->dev, res);
-- 
2.20.1.windows.1




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

end of thread, other threads:[~2020-03-21 18:56 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-03-18 10:07 [PATCH] drivers/i2c/busses/i2c-imx.c:remove duplicate print after platform_get_irq() Tang Bin
2020-03-18 10:07 ` Tang Bin
2020-03-18 10:18 ` Uwe Kleine-König
2020-03-18 10:18   ` Uwe Kleine-König
2020-03-18 10:44   ` Wolfram Sang
2020-03-18 10:44     ` Wolfram Sang
2020-03-20 12:34 ` Oleksij Rempel
2020-03-20 12:34   ` Oleksij Rempel
2020-03-21 18:56 ` Wolfram Sang
2020-03-21 18:56   ` Wolfram Sang

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.