forked from Minki/linux
drm/omap: dmm_tiler:Remove the print function dev_err()
From the coccinelle check: ./drivers/gpu/drm/omapdrm/omap_dmm_tiler.c Error:line 817 is redundant because platform_get_irq() already prints an error So,remove the unnecessary print function dev_err() Reported-by: Zeal Robot <zealci@zte.com.cn> Signed-off-by: ye xingchen <ye.xingchen@zte.com.cn> Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ideasonboard.com> Link: https://patchwork.freedesktop.org/patch/msgid/20220810062738.13554-1-ye.xingchen@zte.com.cn
This commit is contained in:
parent
8b42057e62
commit
a99509ba6d
@ -813,10 +813,8 @@ static int omap_dmm_probe(struct platform_device *dev)
|
||||
}
|
||||
|
||||
omap_dmm->irq = platform_get_irq(dev, 0);
|
||||
if (omap_dmm->irq < 0) {
|
||||
dev_err(&dev->dev, "failed to get IRQ resource\n");
|
||||
if (omap_dmm->irq < 0)
|
||||
goto fail;
|
||||
}
|
||||
|
||||
omap_dmm->dev = &dev->dev;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user