video: fbdev: s3c-fb: fix platform_get_irq.cocci warning

Remove dev_err() messages after platform_get_irq*() failures.
platform_get_irq() already prints an error.

Generated by: scripts/coccinelle/api/platform_get_irq.cocci

Signed-off-by: Yihao Han <hanyihao@vivo.com>
Signed-off-by: Helge Deller <deller@gmx.de>
This commit is contained in:
Yihao Han 2022-03-01 19:44:08 -08:00 committed by Helge Deller
parent bd771cf5c4
commit 961e366c85

View file

@ -1418,7 +1418,6 @@ static int s3c_fb_probe(struct platform_device *pdev)
sfb->irq_no = platform_get_irq(pdev, 0);
if (sfb->irq_no < 0) {
dev_err(dev, "failed to acquire irq resource\n");
ret = -ENOENT;
goto err_lcd_clk;
}