提交 950fd045 编写于 作者: T Tan Zhongjun 提交者: David S. Miller

soc: qcom: ipa: Remove superfluous error message around platform_get_irq()

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: NTan Zhongjun <tanzhongjun@yulong.com>
Signed-off-by: NDavid S. Miller <davem@davemloft.net>
上级 cb8e2e43
......@@ -176,11 +176,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);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册