aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/exynos
diff options
context:
space:
mode:
authorGustavo Padovan <gustavo.padovan@collabora.co.uk>2015-04-01 12:02:06 -0400
committerInki Dae <inki.dae@samsung.com>2015-04-12 22:39:39 -0400
commit1be4b7ee800a57ca613131304e01cd91ec8bca2a (patch)
tree36362c5fe50763424e882301089749cc10b0ed3e /drivers/gpu/drm/exynos
parent453b44a3f6f3f43f50387a9af27c5356c273e831 (diff)
drm/exynos: remove unused exynos_crtc->win_enable() callback
None of the exynos crtc drivers implements win_enable() so remove it for better clarity of the code. Signed-off-by: Gustavo Padovan <gustavo.padovan@collabora.co.uk> Signed-off-by: Inki Dae <inki.dae@samsung.com>
Diffstat (limited to 'drivers/gpu/drm/exynos')
-rw-r--r--drivers/gpu/drm/exynos/exynos_drm_drv.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/gpu/drm/exynos/exynos_drm_drv.h b/drivers/gpu/drm/exynos/exynos_drm_drv.h
index 9afd390d4674..4e8f0b04fff5 100644
--- a/drivers/gpu/drm/exynos/exynos_drm_drv.h
+++ b/drivers/gpu/drm/exynos/exynos_drm_drv.h
@@ -174,7 +174,6 @@ struct exynos_drm_display {
174 * hardware overlay is updated. 174 * hardware overlay is updated.
175 * @win_mode_set: copy drm overlay info to hw specific overlay info. 175 * @win_mode_set: copy drm overlay info to hw specific overlay info.
176 * @win_commit: apply hardware specific overlay data to registers. 176 * @win_commit: apply hardware specific overlay data to registers.
177 * @win_enable: enable hardware specific overlay.
178 * @win_disable: disable hardware specific overlay. 177 * @win_disable: disable hardware specific overlay.
179 * @te_handler: trigger to transfer video image at the tearing effect 178 * @te_handler: trigger to transfer video image at the tearing effect
180 * synchronization signal if there is a page flip request. 179 * synchronization signal if there is a page flip request.
@@ -192,7 +191,6 @@ struct exynos_drm_crtc_ops {
192 void (*win_mode_set)(struct exynos_drm_crtc *crtc, 191 void (*win_mode_set)(struct exynos_drm_crtc *crtc,
193 struct exynos_drm_plane *plane); 192 struct exynos_drm_plane *plane);
194 void (*win_commit)(struct exynos_drm_crtc *crtc, int zpos); 193 void (*win_commit)(struct exynos_drm_crtc *crtc, int zpos);
195 void (*win_enable)(struct exynos_drm_crtc *crtc, int zpos);
196 void (*win_disable)(struct exynos_drm_crtc *crtc, int zpos); 194 void (*win_disable)(struct exynos_drm_crtc *crtc, int zpos);
197 void (*te_handler)(struct exynos_drm_crtc *crtc); 195 void (*te_handler)(struct exynos_drm_crtc *crtc);
198}; 196};