diff options
author | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2012-05-16 17:08:54 +0200 |
---|---|---|
committer | Inki Dae <inki.dae@samsung.com> | 2012-06-05 13:25:15 +0900 |
commit | f56fdcef4d8991b0906461fec6494d7f9d401ef3 (patch) | |
tree | 489e4defd1689ca03a0279a8561aa2ee30da42c4 /drivers/gpu | |
parent | 07b6835f2c6bc3101ed7cf471f566d53319a6d50 (diff) | |
download | linux-3.10-f56fdcef4d8991b0906461fec6494d7f9d401ef3.tar.gz linux-3.10-f56fdcef4d8991b0906461fec6494d7f9d401ef3.tar.bz2 linux-3.10-f56fdcef4d8991b0906461fec6494d7f9d401ef3.zip |
drm/exynos: Remove dummy encoder get_crtc operation implementation
The encoder get_crtc operation is called to retrieve a pointer to the
CRTC the encoder is currenctly connected to, right after setting the
encoder::crtc field to the new CRTC. The implementation of this
operation returns the pointer to the new CRTC, which is then pointlessly
compared to itself.
As the operation is not mandatory, don't implement it.
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Inki Dae <inki.dae@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
Diffstat (limited to 'drivers/gpu')
-rw-r--r-- | drivers/gpu/drm/exynos/exynos_drm_encoder.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/drivers/gpu/drm/exynos/exynos_drm_encoder.c b/drivers/gpu/drm/exynos/exynos_drm_encoder.c index 6e9ac7bd1dc..23d5ad379f8 100644 --- a/drivers/gpu/drm/exynos/exynos_drm_encoder.c +++ b/drivers/gpu/drm/exynos/exynos_drm_encoder.c @@ -172,19 +172,12 @@ static void exynos_drm_encoder_commit(struct drm_encoder *encoder) manager_ops->commit(manager->dev); } -static struct drm_crtc * -exynos_drm_encoder_get_crtc(struct drm_encoder *encoder) -{ - return encoder->crtc; -} - static struct drm_encoder_helper_funcs exynos_encoder_helper_funcs = { .dpms = exynos_drm_encoder_dpms, .mode_fixup = exynos_drm_encoder_mode_fixup, .mode_set = exynos_drm_encoder_mode_set, .prepare = exynos_drm_encoder_prepare, .commit = exynos_drm_encoder_commit, - .get_crtc = exynos_drm_encoder_get_crtc, }; static void exynos_drm_encoder_destroy(struct drm_encoder *encoder) |