[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20210610140118.1437-1-hbut_tan@163.com>
Date: Thu, 10 Jun 2021 22:01:18 +0800
From: Zhongjun Tan <hbut_tan@....com>
To: elder@...nel.org, davem@...emloft.net, kuba@...nel.org
Cc: netdev@...r.kernel.org, linux-kernel@...r.kernel.org,
Tan Zhongjun <tanzhongjun@...ong.com>
Subject: [PATCH] soc: qcom: ipa: Remove superfluous error message around platform_get_irq()
From: Tan Zhongjun <tanzhongjun@...ong.com>
The platform_get_irq() prints error message telling that interrupt is
missing,hence there is no need to duplicated that message in the
drivers.
Signed-off-by: Tan Zhongjun <tanzhongjun@...ong.com>
---
drivers/net/ipa/ipa_smp2p.c | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)
diff --git a/drivers/net/ipa/ipa_smp2p.c b/drivers/net/ipa/ipa_smp2p.c
index 34b68dc43886..93270e50b6b3 100644
--- a/drivers/net/ipa/ipa_smp2p.c
+++ b/drivers/net/ipa/ipa_smp2p.c
@@ -177,11 +177,8 @@ static int ipa_smp2p_irq_init(struct ipa_smp2p *smp2p, const char *name,
int ret;
ret = platform_get_irq_byname(smp2p->ipa->pdev, name);
- if (ret <= 0) {
- dev_err(dev, "DT error %d getting \"%s\" IRQ property\n",
- ret, name);
+ if (ret <= 0)
return ret ? : -EINVAL;
- }
irq = ret;
ret = request_threaded_irq(irq, NULL, handler, 0, name, smp2p);
--
2.17.1
Powered by blists - more mailing lists