Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 12b23d5f authored by Wei Yongjun's avatar Wei Yongjun Committed by Tomi Valkeinen
Browse files

video: mxsfb: remove redundant dev_err call in mxsfb_probe()



There is a error message within devm_ioremap_resource
already, so remove the dev_err call to avoid redundant
error message.

Signed-off-by: default avatarWei Yongjun <yongjun_wei@trendmicro.com.cn>
Signed-off-by: default avatarTomi Valkeinen <tomi.valkeinen@ti.com>
parent 196bf9f3
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -899,7 +899,6 @@ static int mxsfb_probe(struct platform_device *pdev)

	host->base = devm_ioremap_resource(&pdev->dev, res);
	if (IS_ERR(host->base)) {
		dev_err(&pdev->dev, "ioremap failed\n");
		ret = PTR_ERR(host->base);
		goto fb_release;
	}