summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/vc4/vc4_drv.c
diff options
context:
space:
mode:
authorColin Ian King <colin.king@canonical.com>2016-07-09 23:26:03 +0100
committerEric Anholt <eric@anholt.net>2016-07-11 17:23:50 -0700
commitdeb4765db386db67626ffd075d8b5eb5fdf9c4f6 (patch)
treebbd793c7621758a2582b8982efa34d916d977a4a /drivers/gpu/drm/vc4/vc4_drv.c
parent1bf59f1dcbe25272f6b5d870054647e58a8a9c55 (diff)
downloadlinux-deb4765db386db67626ffd075d8b5eb5fdf9c4f6.tar.bz2
drm/vc4: remove redundant ret status check
At the current point where ret is being checked for non-zero it has not changed since it was initialized to zero, hence the check and the label unref are redundant and can be removed. Signed-off-by: Colin Ian King <colin.king@canonical.com> Reviewed-by: Eric Anholt <eric@anholt.net>
Diffstat (limited to 'drivers/gpu/drm/vc4/vc4_drv.c')
-rw-r--r--drivers/gpu/drm/vc4/vc4_drv.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/gpu/drm/vc4/vc4_drv.c b/drivers/gpu/drm/vc4/vc4_drv.c
index 65f77cc243a6..2f30214ee810 100644
--- a/drivers/gpu/drm/vc4/vc4_drv.c
+++ b/drivers/gpu/drm/vc4/vc4_drv.c
@@ -198,8 +198,6 @@ static int vc4_drm_bind(struct device *dev)
vc4_bo_cache_init(drm);
drm_mode_config_init(drm);
- if (ret)
- goto unref;
vc4_gem_init(drm);
@@ -233,7 +231,6 @@ unbind_all:
component_unbind_all(dev, drm);
gem_destroy:
vc4_gem_destroy(drm);
-unref:
drm_dev_unref(drm);
vc4_bo_cache_destroy(drm);
return ret;