Commit 3d451720 authored by Muhammad Usama Anjum's avatar Muhammad Usama Anjum Committed by 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: default avatarMuhammad Usama Anjum <musamaanjum@gmail.com>
Signed-off-by: default avatarHans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab+huawei@kernel.org>
parent 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%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment