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


Groups > linux.kernel > #1436666 > unrolled thread

[PATCH 2/6] drm/armada: use drm_crtc_handle_vblank()

Started byGustavo Padovan <gustavo@padovan.org>
First post2016-07-05 02:10 +0200
Last post2016-07-05 02:10 +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 2/6] drm/armada: use drm_crtc_handle_vblank() Gustavo Padovan <gustavo@padovan.org> - 2016-07-05 02:10 +0200

#1436666 — [PATCH 2/6] drm/armada: use drm_crtc_handle_vblank()

FromGustavo Padovan <gustavo@padovan.org>
Date2016-07-05 02:10 +0200
Subject[PATCH 2/6] drm/armada: use drm_crtc_handle_vblank()
Message-ID<rRm65-3W9-11@gated-at.bofh.it>
From: Gustavo Padovan <gustavo.padovan@collabora.co.uk>

Remove legacy usage of drm_handle_vblank()

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

diff --git a/drivers/gpu/drm/armada/armada_crtc.c b/drivers/gpu/drm/armada/armada_crtc.c
index 34405e4..2f58e9e 100644
--- a/drivers/gpu/drm/armada/armada_crtc.c
+++ b/drivers/gpu/drm/armada/armada_crtc.c
@@ -410,7 +410,7 @@ static void armada_drm_crtc_irq(struct armada_crtc *dcrtc, u32 stat)
 		DRM_ERROR("graphics underflow on crtc %u\n", dcrtc->num);
 
 	if (stat & VSYNC_IRQ)
-		drm_handle_vblank(dcrtc->crtc.dev, dcrtc->num);
+		drm_crtc_handle_vblank(&dcrtc->crtc);
 
 	spin_lock(&dcrtc->irq_lock);
 	ovl_plane = dcrtc->plane;
-- 
2.5.5

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web