drm/exynos: decon5433: Remove unnecessary platform_get_resource() error check
authorFabio Estevam <fabio.estevam@nxp.com>
Mon, 18 Dec 2017 13:02:25 +0000 (11:02 -0200)
committerJunghoon Kim <jhoon20.kim@samsung.com>
Thu, 14 Feb 2019 05:56:09 +0000 (14:56 +0900)
devm_ioremap_resource() already checks if the resource is NULL, so
remove the unnecessary platform_get_resource() error check.

Cc: Inki Dae <inki.dae@samsung.com>
Signed-off-by: Fabio Estevam <fabio.estevam@nxp.com>
Reviewed-by: Andrzej Hajda <a.hajda@samsung.com>
Signed-off-by: Inki Dae <inki.dae@samsung.com>
drivers/gpu/drm/exynos/exynos5433_drm_decon.c

index 5a5b353..85c88a9 100644 (file)
@@ -735,11 +735,6 @@ static int exynos5433_decon_probe(struct platform_device *pdev)
        }
 
        res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
-       if (!res) {
-               dev_err(dev, "cannot find IO resource\n");
-               return -ENXIO;
-       }
-
        ctx->addr = devm_ioremap_resource(dev, res);
        if (IS_ERR(ctx->addr)) {
                dev_err(dev, "ioremap failed\n");