]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/commitdiff
drm/fsl-dcu: use drm_mode_config_cleanup on initialization errors
authorStefan Agner <stefan@agner.ch>
Sun, 19 Jun 2016 02:15:43 +0000 (19:15 -0700)
committerThierry Reding <treding@nvidia.com>
Tue, 21 Jun 2016 13:37:26 +0000 (15:37 +0200)
Commit 7566e247672d ("drm/fsl-dcu: handle initialization errors properly")
introduced error handling during initialization, but with a wrong cleanup
order.

Replace the error handling with the generic cleanup function
drm_mode_config_cleanup.

Signed-off-by: Stefan Agner <stefan@agner.ch>
Signed-off-by: Thierry Reding <treding@nvidia.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160619021543.23587-1-stefan@agner.ch
drivers/gpu/drm/fsl-dcu/fsl_dcu_drm_kms.c

index c564ec612b59bd16a561897f3ce12e3dc5016a66..a6e4cd591960b065c4dbfd0bc2e973eb4b50b277 100644 (file)
@@ -37,23 +37,22 @@ int fsl_dcu_drm_modeset_init(struct fsl_dcu_drm_device *fsl_dev)
 
        ret = fsl_dcu_drm_crtc_create(fsl_dev);
        if (ret)
-               return ret;
+               goto err;
 
        ret = fsl_dcu_drm_encoder_create(fsl_dev, &fsl_dev->crtc);
        if (ret)
-               goto fail_encoder;
+               goto err;
 
        ret = fsl_dcu_drm_connector_create(fsl_dev, &fsl_dev->encoder);
        if (ret)
-               goto fail_connector;
+               goto err;
 
        drm_mode_config_reset(fsl_dev->drm);
        drm_kms_helper_poll_init(fsl_dev->drm);
 
        return 0;
-fail_encoder:
-       fsl_dev->crtc.funcs->destroy(&fsl_dev->crtc);
-fail_connector:
-       fsl_dev->encoder.funcs->destroy(&fsl_dev->encoder);
+
+err:
+       drm_mode_config_cleanup(fsl_dev->drm);
        return ret;
 }