Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c5cca97f authored by Rob Clark's avatar Rob Clark Committed by Inki Dae
Browse files

drm/exynos: use drm_send_vblank_event() helper



Rebased.

Signed-off-by: default avatarRob Clark <rob@ti.com>
Signed-off-by: default avatarInki Dae <inki.dae@samsung.com>
parent 94d019b8
Loading
Loading
Loading
Loading
+2 −8
Original line number Diff line number Diff line
@@ -397,7 +397,6 @@ void exynos_drm_crtc_finish_pageflip(struct drm_device *dev, int crtc)
{
	struct exynos_drm_private *dev_priv = dev->dev_private;
	struct drm_pending_vblank_event *e, *t;
	struct timeval now;
	unsigned long flags;

	DRM_DEBUG_KMS("%s\n", __FILE__);
@@ -410,13 +409,8 @@ void exynos_drm_crtc_finish_pageflip(struct drm_device *dev, int crtc)
		if (crtc != e->pipe)
			continue;

		do_gettimeofday(&now);
		e->event.sequence = 0;
		e->event.tv_sec = now.tv_sec;
		e->event.tv_usec = now.tv_usec;

		list_move_tail(&e->base.link, &e->base.file_priv->event_list);
		wake_up_interruptible(&e->base.file_priv->event_wait);
		list_del(&e->base.link);
		drm_send_vblank_event(dev, -1, e);
		drm_vblank_put(dev, crtc);
	}