Skip to content

Commit

Permalink
drm/exynos: init kms poll after creation of connectors
Browse files Browse the repository at this point in the history
KMS poll init helper should be run when connectors are created,
otherwise it will not schedule connection detector.

Signed-off-by: Andrzej Hajda <a.hajda@samsung.com>
Reviewed-by: Tomasz Figa <t.figa@samsung.com>
Signed-off-by: Inki Dae <inki.dae@samsung.com>
  • Loading branch information
Andrzej Hajda authored and Inki Dae committed Mar 23, 2014
1 parent 25928a3 commit 8e527f0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions drivers/gpu/drm/exynos/exynos_drm_drv.c
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,6 @@ static int exynos_drm_load(struct drm_device *dev, unsigned long flags)

drm_mode_config_init(dev);

/* init kms poll for handling hpd */
drm_kms_helper_poll_init(dev);

exynos_drm_mode_config_init(dev);

ret = exynos_drm_initialize_managers(dev);
Expand All @@ -93,6 +90,9 @@ static int exynos_drm_load(struct drm_device *dev, unsigned long flags)
if (ret)
goto err_manager_cleanup;

/* init kms poll for handling hpd */
drm_kms_helper_poll_init(dev);

ret = drm_vblank_init(dev, MAX_CRTC);
if (ret)
goto err_display_cleanup;
Expand Down

0 comments on commit 8e527f0

Please sign in to comment.