提交 54ac0a0f 编写于 作者: F Fabio Estevam 提交者: Stefan Agner

drm/fsl-dcu: Remove unneeded NULL check

devm_ioremap_resource() performs NULL check for the 'res' argument,
so remove the unneeded check.
Signed-off-by: NFabio Estevam <fabio.estevam@nxp.com>
Signed-off-by: NStefan Agner <stefan@agner.ch>
上级 39c74b51
......@@ -337,11 +337,6 @@ static int fsl_dcu_drm_probe(struct platform_device *pdev)
fsl_dev->soc = id->data;
res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
if (!res) {
dev_err(dev, "could not get memory IO resource\n");
return -ENODEV;
}
base = devm_ioremap_resource(dev, res);
if (IS_ERR(base)) {
ret = PTR_ERR(base);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册