Commit 405bea7a authored by Daniel Vetter's avatar Daniel Vetter Committed by Dave Airlie

drm/shmob: call drm_put_dev directly from ->remove hook

We need to chase one pointer here.

Cc: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
Signed-off-by: default avatarDaniel Vetter <daniel.vetter@ffwll.ch>
Acked-by: default avatarLaurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
Signed-off-by: default avatarDave Airlie <airlied@redhat.com>
parent fd3c0253
...@@ -336,7 +336,9 @@ static int shmob_drm_probe(struct platform_device *pdev) ...@@ -336,7 +336,9 @@ static int shmob_drm_probe(struct platform_device *pdev)
static int shmob_drm_remove(struct platform_device *pdev) static int shmob_drm_remove(struct platform_device *pdev)
{ {
drm_platform_exit(&shmob_drm_driver, pdev); struct shmob_drm_device *sdev = platform_get_drvdata(pdev);
drm_put_dev(sdev->ddev);
return 0; return 0;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment