Commit ee5ee188 authored by tangchunyou's avatar tangchunyou Committed by Chun-Kuang Hu

drm/mediatek: cec: Delete redundant printing of return value

platform_get_irq() has already checked and printed the return value,
the printing here is nothing special, it is not necessary at all.
Signed-off-by: default avatartangchunyou <tangchunyou@yulong.com>
Signed-off-by: default avatarChun-Kuang Hu <chunkuang.hu@kernel.org>
parent 4accca43
...@@ -208,10 +208,8 @@ static int mtk_cec_probe(struct platform_device *pdev) ...@@ -208,10 +208,8 @@ static int mtk_cec_probe(struct platform_device *pdev)
} }
cec->irq = platform_get_irq(pdev, 0); cec->irq = platform_get_irq(pdev, 0);
if (cec->irq < 0) { if (cec->irq < 0)
dev_err(dev, "Failed to get cec irq: %d\n", cec->irq);
return cec->irq; return cec->irq;
}
ret = devm_request_threaded_irq(dev, cec->irq, NULL, ret = devm_request_threaded_irq(dev, cec->irq, NULL,
mtk_cec_htplg_isr_thread, mtk_cec_htplg_isr_thread,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment