Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit deb4765d authored by Colin Ian King's avatar Colin Ian King Committed by Eric Anholt
Browse files

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: default avatarColin Ian King <colin.king@canonical.com>
Reviewed-by: default avatarEric Anholt <eric@anholt.net>
parent 1bf59f1d
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -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 @@ static int vc4_drm_bind(struct device *dev)
	component_unbind_all(dev, drm);
gem_destroy:
	vc4_gem_destroy(drm);
unref:
	drm_dev_unref(drm);
	vc4_bo_cache_destroy(drm);
	return ret;