[<prev] [next>] [day] [month] [year] [list]
Message-Id: <20200416135302.13740-1-tangbin@cmss.chinamobile.com>
Date: Thu, 16 Apr 2020 21:53:02 +0800
From: Tang Bin <tangbin@...s.chinamobile.com>
To: wsa@...-dreams.de, manivannan.sadhasivam@...aro.org,
thor.thayer@...ux.intel.com, rrichter@...vell.com,
bjorn.andersson@...aro.org
Cc: linux-i2c@...r.kernel.org, linux-kernel@...r.kernel.org,
Tang Bin <tangbin@...s.chinamobile.com>
Subject: [PATCH] i2c: busses: Omit superfluous error message in img_i2c_probe()
In the function img_i2c_probe(), when get irq failed, the function
platform_get_irq() logs an error message, so remove redundant message
here.
Signed-off-by: Tang Bin <tangbin@...s.chinamobile.com>
---
drivers/i2c/busses/i2c-img-scb.c | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/drivers/i2c/busses/i2c-img-scb.c b/drivers/i2c/busses/i2c-img-scb.c
index c937ea7..98a8930 100644
--- a/drivers/i2c/busses/i2c-img-scb.c
+++ b/drivers/i2c/busses/i2c-img-scb.c
@@ -1342,10 +1342,8 @@ static int img_i2c_probe(struct platform_device *pdev)
return PTR_ERR(i2c->base);
irq = platform_get_irq(pdev, 0);
- if (irq < 0) {
- dev_err(&pdev->dev, "can't get irq number\n");
+ if (irq < 0)
return irq;
- }
i2c->sys_clk = devm_clk_get(&pdev->dev, "sys");
if (IS_ERR(i2c->sys_clk)) {
--
2.7.4
Powered by blists - more mailing lists