提交 3d451720 编写于 作者: M Muhammad Usama Anjum 提交者: Mauro Carvalho Chehab

media: staging: media/meson: remove redundant dev_err call

devm_ioremap_resource() prints error message in itself. Remove the
dev_err call to avoid redundant error message.
Signed-off-by: NMuhammad Usama Anjum <musamaanjum@gmail.com>
Signed-off-by: NHans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: NMauro Carvalho Chehab <mchehab+huawei@kernel.org>
上级 3e057b8a
......@@ -1008,17 +1008,13 @@ static int vdec_probe(struct platform_device *pdev)
r = platform_get_resource_byname(pdev, IORESOURCE_MEM, "dos");
core->dos_base = devm_ioremap_resource(dev, r);
if (IS_ERR(core->dos_base)) {
dev_err(dev, "Couldn't remap DOS memory\n");
if (IS_ERR(core->dos_base))
return PTR_ERR(core->dos_base);
}
r = platform_get_resource_byname(pdev, IORESOURCE_MEM, "esparser");
core->esparser_base = devm_ioremap_resource(dev, r);
if (IS_ERR(core->esparser_base)) {
dev_err(dev, "Couldn't remap ESPARSER memory\n");
if (IS_ERR(core->esparser_base))
return PTR_ERR(core->esparser_base);
}
core->regmap_ao =
syscon_regmap_lookup_by_phandle(dev->of_node,
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册