Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1415153 > unrolled thread

[PATCH RESEND 05/14] drm/udl: use drm_crtc_send_vblank_event()

Started byGustavo Padovan <gustavo@padovan.org>
First post2016-06-06 16:50 +0200
Last post2016-06-06 16:50 +0200
Articles 1 — 1 participant

Back to article view | Back to linux.kernel

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  [PATCH RESEND 05/14] drm/udl: use drm_crtc_send_vblank_event() Gustavo Padovan <gustavo@padovan.org> - 2016-06-06 16:50 +0200

#1415153 — [PATCH RESEND 05/14] drm/udl: use drm_crtc_send_vblank_event()

FromGustavo Padovan <gustavo@padovan.org>
Date2016-06-06 16:50 +0200
Subject[PATCH RESEND 05/14] drm/udl: use drm_crtc_send_vblank_event()
Message-ID<rH40O-6ct-9@gated-at.bofh.it>
From: Gustavo Padovan <gustavo.padovan@collabora.co.uk>

Replace the legacy drm_send_vblank_event() with the new helper function.

Signed-off-by: Gustavo Padovan <gustavo.padovan@collabora.co.uk>
---
 drivers/gpu/drm/udl/udl_modeset.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/udl/udl_modeset.c b/drivers/gpu/drm/udl/udl_modeset.c
index b87afee..f92ea95 100644
--- a/drivers/gpu/drm/udl/udl_modeset.c
+++ b/drivers/gpu/drm/udl/udl_modeset.c
@@ -376,7 +376,7 @@ static int udl_crtc_page_flip(struct drm_crtc *crtc,
 
 	spin_lock_irqsave(&dev->event_lock, flags);
 	if (event)
-		drm_send_vblank_event(dev, 0, event);
+		drm_crtc_send_vblank_event(crtc, event);
 	spin_unlock_irqrestore(&dev->event_lock, flags);
 	crtc->primary->fb = fb;
 
-- 
2.5.5

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web