diff options
author | Sean Paul <seanpaul@chromium.org> | 2014-02-24 19:25:42 +0900 |
---|---|---|
committer | Inki Dae <daeinki@gmail.com> | 2014-03-24 00:36:38 +0900 |
commit | 90672f92caed94909f18467ea4663e0c5843e25f (patch) | |
tree | 0e847828c9ff7a641bd4d76ed3b1dd8969fa89d3 /drivers/gpu/drm/exynos/exynos_drm_drv.h | |
parent | 1634ba256d022a0b86437323ce9d9b84bbce202c (diff) | |
download | linux-90672f92caed94909f18467ea4663e0c5843e25f.tar.gz linux-90672f92caed94909f18467ea4663e0c5843e25f.tar.bz2 linux-90672f92caed94909f18467ea4663e0c5843e25f.zip |
drm/exynos: Remove the exynos_drm_connector shim
This path removes the exynos_drm_connector code since it was just
passing hooks through display_ops. The individual device drivers are now
responsible for implementing drm_connector directly.
Signed-off-by: Sean Paul <seanpaul@chromium.org>
Signed-off-by: Inki Dae <inki.dae@samsung.com>
Diffstat (limited to 'drivers/gpu/drm/exynos/exynos_drm_drv.h')
-rw-r--r-- | drivers/gpu/drm/exynos/exynos_drm_drv.h | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/drivers/gpu/drm/exynos/exynos_drm_drv.h b/drivers/gpu/drm/exynos/exynos_drm_drv.h index b1b02d03ec12..1c78806c4e5c 100644 --- a/drivers/gpu/drm/exynos/exynos_drm_drv.h +++ b/drivers/gpu/drm/exynos/exynos_drm_drv.h @@ -124,10 +124,6 @@ struct exynos_drm_overlay { * * @initialize: initializes the display with drm_dev * @remove: cleans up the display for removal - * @is_connected: check for that display is connected or not. - * @get_max_resol: get maximum resolution to specific hardware. - * @get_edid: get edid modes from display driver. - * @get_panel: get panel object from display driver. * @mode_fixup: fix mode data comparing to hw specific display mode. * @mode_set: convert drm_display_mode to hw specific display mode and * would be called by encoder->mode_set(). @@ -142,13 +138,6 @@ struct exynos_drm_display_ops { int (*create_connector)(struct exynos_drm_display *display, struct drm_encoder *encoder); void (*remove)(struct exynos_drm_display *display); - bool (*is_connected)(struct exynos_drm_display *display); - void (*get_max_resol)(struct exynos_drm_display *display, - unsigned int *width, - unsigned int *height); - struct edid *(*get_edid)(struct exynos_drm_display *display, - struct drm_connector *connector); - void *(*get_panel)(struct exynos_drm_display *display); void (*mode_fixup)(struct exynos_drm_display *display, struct drm_connector *connector, const struct drm_display_mode *mode, |