media: staging: media/meson: remove redundant dev_err call
authorMuhammad Usama Anjum <musamaanjum@gmail.com>
Wed, 7 Apr 2021 16:09:21 +0000 (18:09 +0200)
committerMauro Carvalho Chehab <mchehab+huawei@kernel.org>
Fri, 9 Apr 2021 11:18:20 +0000 (13:18 +0200)
devm_ioremap_resource() prints error message in itself. Remove the
dev_err call to avoid redundant error message.

Signed-off-by: Muhammad Usama Anjum <musamaanjum@gmail.com>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
drivers/staging/media/meson/vdec/vdec.c

index 5d4db7a..e51d69c 100644 (file)
@@ -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,