drm/sun4i: fix missing component unbind on bind errors
[ Upstream commit c22f2ff8724b49dce2ae797e9fbf4bc0fa91112f ]
Make sure to unbind all subcomponents when binding the aggregate device
fails.
Fixes: 9026e0d122
("drm: Add Allwinner A10 Display Engine support")
Cc: stable@vger.kernel.org # 4.7
Cc: Maxime Ripard <mripard@kernel.org>
Signed-off-by: Johan Hovold <johan+linaro@kernel.org>
Signed-off-by: Maxime Ripard <maxime@cerno.tech>
Link: https://patchwork.freedesktop.org/patch/msgid/20230306103242.4775-1-johan+linaro@kernel.org
Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:

committed by
Greg Kroah-Hartman

parent
b5131ed83c
commit
cfeda9432c
@@ -93,7 +93,7 @@ static int sun4i_drv_bind(struct device *dev)
|
|||||||
/* drm_vblank_init calls kcalloc, which can fail */
|
/* drm_vblank_init calls kcalloc, which can fail */
|
||||||
ret = drm_vblank_init(drm, drm->mode_config.num_crtc);
|
ret = drm_vblank_init(drm, drm->mode_config.num_crtc);
|
||||||
if (ret)
|
if (ret)
|
||||||
goto cleanup_mode_config;
|
goto unbind_all;
|
||||||
|
|
||||||
drm->irq_enabled = true;
|
drm->irq_enabled = true;
|
||||||
|
|
||||||
@@ -117,6 +117,8 @@ static int sun4i_drv_bind(struct device *dev)
|
|||||||
|
|
||||||
finish_poll:
|
finish_poll:
|
||||||
drm_kms_helper_poll_fini(drm);
|
drm_kms_helper_poll_fini(drm);
|
||||||
|
unbind_all:
|
||||||
|
component_unbind_all(dev, NULL);
|
||||||
cleanup_mode_config:
|
cleanup_mode_config:
|
||||||
drm_mode_config_cleanup(drm);
|
drm_mode_config_cleanup(drm);
|
||||||
of_reserved_mem_device_release(dev);
|
of_reserved_mem_device_release(dev);
|
||||||
|
Reference in New Issue
Block a user