diff options
author | 2015-08-31 00:33:57 +0900 | |
---|---|---|
committer | 2015-08-31 01:02:56 +0900 | |
commit | e7fefb1d5af5d90baec5204d9096e8c4db8c93bd (patch) | |
tree | 9523e8ca2e35f5ad250c148f529902f3d9a87774 | |
parent | drm/exynos: Enable atomic modesetting feature (diff) | |
download | wireguard-linux-e7fefb1d5af5d90baec5204d9096e8c4db8c93bd.tar.xz wireguard-linux-e7fefb1d5af5d90baec5204d9096e8c4db8c93bd.zip |
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 <gustavo.padovan@collabora.co.uk>
Signed-off-by: Inki Dae <daeinki@gmail.com>
Diffstat (limited to '')
-rw-r--r-- | drivers/gpu/drm/exynos/exynos_drm_drv.c | 2 |
1 files changed, 0 insertions, 2 deletions
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, |