diff options
author | Dave Airlie <airlied@redhat.com> | 2016-04-14 13:06:19 +1000 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2016-04-14 13:06:19 +1000 |
commit | ff3e84e8e479c3ba7148f8dc35a56cf091ab56d9 (patch) | |
tree | c22633a65174e3455c9690e377dce85ccf9049c9 /drivers/gpu/drm/exynos/exynos_drm_fb.c | |
parent | 25451c195a4e5097d4e74f2165e57f35a58197e4 (diff) | |
parent | 2072fe51466f86e1f0eedf12bff7106913807efc (diff) | |
download | blackbird-op-linux-ff3e84e8e479c3ba7148f8dc35a56cf091ab56d9.tar.gz blackbird-op-linux-ff3e84e8e479c3ba7148f8dc35a56cf091ab56d9.zip |
Merge branch 'exynos-drm-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos into drm-fixes
fix some exynos regressions.
* 'exynos-drm-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos:
drm/exynos: Use VIDEO_SAMSUNG_S5P_G2D=n as G2D Kconfig dependency
drm/exynos: fix a warning message
drm/exynos: mic: fix an error code
drm/exynos: fimd: fix broken dp_clock control
drm/exynos: build fbdev code conditionally
drm/exynos: fix adjusted_mode pointer in exynos_plane_mode_set
drm/exynos: fix error handling in exynos_drm_subdrv_open
Diffstat (limited to 'drivers/gpu/drm/exynos/exynos_drm_fb.c')
-rw-r--r-- | drivers/gpu/drm/exynos/exynos_drm_fb.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/drivers/gpu/drm/exynos/exynos_drm_fb.c b/drivers/gpu/drm/exynos/exynos_drm_fb.c index d614194644c8..81cc5537cf25 100644 --- a/drivers/gpu/drm/exynos/exynos_drm_fb.c +++ b/drivers/gpu/drm/exynos/exynos_drm_fb.c @@ -199,17 +199,6 @@ dma_addr_t exynos_drm_fb_dma_addr(struct drm_framebuffer *fb, int index) return exynos_fb->dma_addr[index]; } -static void exynos_drm_output_poll_changed(struct drm_device *dev) -{ - struct exynos_drm_private *private = dev->dev_private; - struct drm_fb_helper *fb_helper = private->fb_helper; - - if (fb_helper) - drm_fb_helper_hotplug_event(fb_helper); - else - exynos_drm_fbdev_init(dev); -} - static const struct drm_mode_config_funcs exynos_drm_mode_config_funcs = { .fb_create = exynos_user_fb_create, .output_poll_changed = exynos_drm_output_poll_changed, |