From: Gustavo Padovan Date: Thu, 27 Nov 2014 18:30:45 +0000 (-0200) Subject: drm/exynos: remove mode_set() ops from exynos_crtc X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=dc81252ff50d7ededc3dfd2c8236efb5c110a14e;p=linux-beck.git drm/exynos: remove mode_set() ops from exynos_crtc It is no longer used anywhere. Signed-off-by: Gustavo Padovan Signed-off-by: Inki Dae --- diff --git a/drivers/gpu/drm/exynos/exynos_drm_drv.h b/drivers/gpu/drm/exynos/exynos_drm_drv.h index 4c930d066196..d490b49f71c9 100644 --- a/drivers/gpu/drm/exynos/exynos_drm_drv.h +++ b/drivers/gpu/drm/exynos/exynos_drm_drv.h @@ -167,7 +167,6 @@ struct exynos_drm_display { * * @dpms: control device power. * @mode_fixup: fix mode data before applying it - * @mode_set: set the given mode to the manager * @commit: set current hw specific display mode to hw. * @enable_vblank: specific driver callback for enabling vblank interrupt. * @disable_vblank: specific driver callback for disabling vblank interrupt. @@ -186,8 +185,6 @@ struct exynos_drm_crtc_ops { bool (*mode_fixup)(struct exynos_drm_crtc *crtc, const struct drm_display_mode *mode, struct drm_display_mode *adjusted_mode); - void (*mode_set)(struct exynos_drm_crtc *crtc, - const struct drm_display_mode *mode); void (*commit)(struct exynos_drm_crtc *crtc); int (*enable_vblank)(struct exynos_drm_crtc *crtc); void (*disable_vblank)(struct exynos_drm_crtc *crtc);