Commit 69c3ed72 authored by Pan Bian's avatar Pan Bian Committed by Philipp Zabel
Browse files

drm/imx: fix memory leak when fails to init



Put DRM device on initialization failure path rather than directly
return error code.

Fixes: a67d5088 ("drm/imx: drop explicit drm_mode_config_cleanup")
Signed-off-by: default avatarPan Bian <bianpan2016@163.com>
Signed-off-by: default avatarPhilipp Zabel <p.zabel@pengutronix.de>
parent a38fd874
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -215,7 +215,7 @@ static int imx_drm_bind(struct device *dev)

	ret = drmm_mode_config_init(drm);
	if (ret)
		return ret;
		goto err_kms;

	ret = drm_vblank_init(drm, MAX_CRTC);
	if (ret)