diff options
author | Fabio Estevam <[email protected]> | 2017-12-18 11:02:28 -0200 |
---|---|---|
committer | Benjamin Gaignard <[email protected]> | 2017-12-19 15:23:25 +0100 |
commit | 6cf7e40b5cf0d8de1ccec73cc9e6db8f0023ef8b (patch) | |
tree | c65bc4b8cf77a02f303c68ec7aefbc79065640f1 | |
parent | 5fca5ece6af8dd507c0459262766369e057e6d60 (diff) |
drm/stm: dsi: Remove unnecessary platform_get_resource() error check
devm_ioremap_resource() already checks if the resource is NULL, so
remove the unnecessary platform_get_resource() error check.
Cc: Philippe Cornu <[email protected]>
Signed-off-by: Fabio Estevam <[email protected]>
Acked-by: Philippe Cornu <[email protected]>
Signed-off-by: Benjamin Gaignard <[email protected]>
Link: https://patchwork.freedesktop.org/patch/msgid/[email protected]
-rw-r--r-- | drivers/gpu/drm/stm/dw_mipi_dsi-stm.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/drivers/gpu/drm/stm/dw_mipi_dsi-stm.c b/drivers/gpu/drm/stm/dw_mipi_dsi-stm.c index 82dcb20cdaa3..fd02506274da 100644 --- a/drivers/gpu/drm/stm/dw_mipi_dsi-stm.c +++ b/drivers/gpu/drm/stm/dw_mipi_dsi-stm.c @@ -290,11 +290,6 @@ static int dw_mipi_dsi_stm_probe(struct platform_device *pdev) return -ENOMEM; res = platform_get_resource(pdev, IORESOURCE_MEM, 0); - if (!res) { - DRM_ERROR("Unable to get resource\n"); - return -ENODEV; - } - dsi->base = devm_ioremap_resource(dev, res); if (IS_ERR(dsi->base)) { DRM_ERROR("Unable to get dsi registers\n"); |