Skip to content

Commit

Permalink
drm/exynos: call drm_put_dev directly from ->remove
Browse files Browse the repository at this point in the history
I didn't find any user of the driver data yet, so store the
drm_device pointer in there.

Cc: Inki Dae <inki.dae@samsung.com>
Acked-by: Inki Dae <inki.dae@samsung.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Signed-off-by: Dave Airlie <airlied@redhat.com>
  • Loading branch information
Daniel Vetter authored and Dave Airlie committed Dec 18, 2013
1 parent 57a24cf commit a9a346d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion drivers/gpu/drm/exynos/exynos_drm_drv.c
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,8 @@ static int exynos_drm_load(struct drm_device *dev, unsigned long flags)

drm_vblank_offdelay = VBLANK_OFF_DELAY;

platform_set_drvdata(dev->platformdev, dev);

return 0;

err_drm_device:
Expand Down Expand Up @@ -305,7 +307,7 @@ static int exynos_drm_platform_probe(struct platform_device *pdev)

static int exynos_drm_platform_remove(struct platform_device *pdev)
{
drm_platform_exit(&exynos_drm_driver, pdev);
drm_put_dev(platform_get_drvdata(pdev));

return 0;
}
Expand Down

0 comments on commit a9a346d

Please sign in to comment.