drm/arm/malidp: remove calls to drm_mode_config_cleanup()
drm_mode_config_init() simply calls drmm_mode_config_init(), hence cleanup is automatically handled through registering drm_mode_config_cleanup() with drmm_add_action_or_reset(). While at it, get rid of the deprecated drm_mode_config_init() and replace it with drmm_mode_config_init() directly. Signed-off-by: Danilo Krummrich <dakr@redhat.com> Signed-off-by: Liviu Dudau <liviu.dudau@arm.com> Link: https://patchwork.freedesktop.org/patch/msgid/20221026155934.125294-6-dakr@redhat.com
This commit is contained in:
parent
3ad5103438
commit
f574f3772c
|
@ -396,7 +396,9 @@ static int malidp_init(struct drm_device *drm)
|
||||||
struct malidp_drm *malidp = drm_to_malidp(drm);
|
struct malidp_drm *malidp = drm_to_malidp(drm);
|
||||||
struct malidp_hw_device *hwdev = malidp->dev;
|
struct malidp_hw_device *hwdev = malidp->dev;
|
||||||
|
|
||||||
drm_mode_config_init(drm);
|
ret = drmm_mode_config_init(drm);
|
||||||
|
if (ret)
|
||||||
|
goto out;
|
||||||
|
|
||||||
drm->mode_config.min_width = hwdev->min_line_size;
|
drm->mode_config.min_width = hwdev->min_line_size;
|
||||||
drm->mode_config.min_height = hwdev->min_line_size;
|
drm->mode_config.min_height = hwdev->min_line_size;
|
||||||
|
@ -407,24 +409,16 @@ static int malidp_init(struct drm_device *drm)
|
||||||
|
|
||||||
ret = malidp_crtc_init(drm);
|
ret = malidp_crtc_init(drm);
|
||||||
if (ret)
|
if (ret)
|
||||||
goto crtc_fail;
|
goto out;
|
||||||
|
|
||||||
ret = malidp_mw_connector_init(drm);
|
ret = malidp_mw_connector_init(drm);
|
||||||
if (ret)
|
if (ret)
|
||||||
goto crtc_fail;
|
goto out;
|
||||||
|
|
||||||
return 0;
|
out:
|
||||||
|
|
||||||
crtc_fail:
|
|
||||||
drm_mode_config_cleanup(drm);
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void malidp_fini(struct drm_device *drm)
|
|
||||||
{
|
|
||||||
drm_mode_config_cleanup(drm);
|
|
||||||
}
|
|
||||||
|
|
||||||
static int malidp_irq_init(struct platform_device *pdev)
|
static int malidp_irq_init(struct platform_device *pdev)
|
||||||
{
|
{
|
||||||
int irq_de, irq_se, ret = 0;
|
int irq_de, irq_se, ret = 0;
|
||||||
|
@ -874,7 +868,6 @@ irq_init_fail:
|
||||||
bind_fail:
|
bind_fail:
|
||||||
of_node_put(malidp->crtc.port);
|
of_node_put(malidp->crtc.port);
|
||||||
malidp->crtc.port = NULL;
|
malidp->crtc.port = NULL;
|
||||||
malidp_fini(drm);
|
|
||||||
query_hw_fail:
|
query_hw_fail:
|
||||||
pm_runtime_put(dev);
|
pm_runtime_put(dev);
|
||||||
if (pm_runtime_enabled(dev))
|
if (pm_runtime_enabled(dev))
|
||||||
|
@ -902,7 +895,6 @@ static void malidp_unbind(struct device *dev)
|
||||||
component_unbind_all(dev, drm);
|
component_unbind_all(dev, drm);
|
||||||
of_node_put(malidp->crtc.port);
|
of_node_put(malidp->crtc.port);
|
||||||
malidp->crtc.port = NULL;
|
malidp->crtc.port = NULL;
|
||||||
malidp_fini(drm);
|
|
||||||
pm_runtime_put(dev);
|
pm_runtime_put(dev);
|
||||||
if (pm_runtime_enabled(dev))
|
if (pm_runtime_enabled(dev))
|
||||||
pm_runtime_disable(dev);
|
pm_runtime_disable(dev);
|
||||||
|
|
Loading…
Reference in New Issue