drm/mediatek: don't use drm_put_dev
authorDaniel Vetter <daniel.vetter@ffwll.ch>
Thu, 8 Dec 2016 11:07:38 +0000 (12:07 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 30 Nov 2017 08:39:13 +0000 (08:39 +0000)
[ Upstream commit ae9d2daecf086958a41ad216152ec208d70ba325 ]

fsl is already fully demidlayered in the probe function, but for
convenience stuck with drm_put_dev. Call the unregister/unref parts
separately, to make sure this driver works correct.

Cc: Philipp Zabel <p.zabel@pengutronix.de>
Cc: CK Hu <ck.hu@mediatek.com>
Reviewed-by: Lucas Stach <l.stach@pengutronix.de>
Signed-off-by: Daniel Vetter <daniel.vetter@intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20161208110739.24417-3-daniel.vetter@ffwll.ch
Signed-off-by: Sasha Levin <alexander.levin@verizon.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/gpu/drm/mediatek/mtk_drm_drv.c

index cf83f6507ec8211566f87cbf4878e5d76c3eff0b..48dfc163233ec516a93118b80541759db92f7062 100644 (file)
@@ -321,7 +321,8 @@ static void mtk_drm_unbind(struct device *dev)
 {
        struct mtk_drm_private *private = dev_get_drvdata(dev);
 
-       drm_put_dev(private->drm);
+       drm_dev_unregister(private->drm);
+       drm_dev_unref(private->drm);
        private->drm = NULL;
 }