From: Gustavo Padovan Date: Sun, 30 Aug 2015 15:33:57 +0000 (+0900) Subject: drm/exynos: remove legacy ->suspend()/resume() X-Git-Tag: v6.6-pxa1908~20516^2~6^2~4 X-Git-Url: https://git.dujemihanovic.xyz/?a=commitdiff_plain;h=e7fefb1d5af5d90baec5204d9096e8c4db8c93bd;p=linux.git drm/exynos: remove legacy ->suspend()/resume() These legacy helpers should only be used by shadow-attaching drivers. KMS drivers has its own way to handle suspend/resume and don't need to use these two helpers. Signed-off-by: Gustavo Padovan Signed-off-by: Inki Dae --- diff --git a/drivers/gpu/drm/exynos/exynos_drm_drv.c b/drivers/gpu/drm/exynos/exynos_drm_drv.c index d53e44914601..c882fd30158b 100644 --- a/drivers/gpu/drm/exynos/exynos_drm_drv.c +++ b/drivers/gpu/drm/exynos/exynos_drm_drv.c @@ -442,8 +442,6 @@ static struct drm_driver exynos_drm_driver = { | DRIVER_ATOMIC, .load = exynos_drm_load, .unload = exynos_drm_unload, - .suspend = exynos_drm_suspend, - .resume = exynos_drm_resume, .open = exynos_drm_open, .preclose = exynos_drm_preclose, .lastclose = exynos_drm_lastclose,