diff options
author | Inki Dae <inki.dae@samsung.com> | 2014-02-28 18:37:02 +0900 |
---|---|---|
committer | Inki Dae <daeinki@gmail.com> | 2014-03-24 00:36:38 +0900 |
commit | d2ba65f6a1dc1105c97349257e41cf1db87e47f7 (patch) | |
tree | 621007bf43eca73bf7633b717aa4bb6893759217 /drivers/gpu/drm/exynos/exynos_drm_drv.c | |
parent | 8fa04aae2aa8bafcfc027856904ebee0060506d0 (diff) |
drm/exynos: fix unnecessary resource cleanup
This patch removes unnecessary drm_mode_config_cleanup call.
Signed-off-by: Inki Dae <inki.dae@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
Diffstat (limited to 'drivers/gpu/drm/exynos/exynos_drm_drv.c')
-rw-r--r-- | drivers/gpu/drm/exynos/exynos_drm_drv.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/gpu/drm/exynos/exynos_drm_drv.c b/drivers/gpu/drm/exynos/exynos_drm_drv.c index 8789d64109c..2389a328123 100644 --- a/drivers/gpu/drm/exynos/exynos_drm_drv.c +++ b/drivers/gpu/drm/exynos/exynos_drm_drv.c @@ -66,7 +66,7 @@ static int exynos_drm_load(struct drm_device *dev, unsigned long flags) ret = drm_create_iommu_mapping(dev); if (ret < 0) { DRM_ERROR("failed to create iommu mapping.\n"); - goto err_crtc; + goto err_free_private; } drm_mode_config_init(dev); @@ -136,8 +136,7 @@ err_manager_cleanup: err_mode_config_cleanup: drm_mode_config_cleanup(dev); drm_release_iommu_mapping(dev); -err_crtc: - drm_mode_config_cleanup(dev); +err_free_private: kfree(private); return ret; |