[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <1460656118-16766-7-git-send-email-gustavo@padovan.org>
Date: Thu, 14 Apr 2016 10:48:18 -0700
From: Gustavo Padovan <gustavo@...ovan.org>
To: dri-devel@...ts.freedesktop.org
Cc: Gustavo Padovan <gustavo.padovan@...labora.co.uk>,
David Airlie <airlied@...ux.ie>,
Ben Skeggs <bskeggs@...hat.com>,
Daniel Vetter <daniel.vetter@...ll.ch>,
Ville Syrjälä
<ville.syrjala@...ux.intel.com>,
Mario Kleiner <mario.kleiner.de@...il.com>,
Dave Airlie <airlied@...hat.com>,
Ilia Mirkin <imirkin@...m.mit.edu>,
Thierry Reding <treding@...dia.com>,
linux-kernel@...r.kernel.org (open list)
Subject: [PATCH 07/14] drm/nouveau: use drm_crtc_send_vblank_event()
From: Gustavo Padovan <gustavo.padovan@...labora.co.uk>
Replace the legacy drm_send_vblank_event() with the new helper function.
Signed-off-by: Gustavo Padovan <gustavo.padovan@...labora.co.uk>
---
drivers/gpu/drm/nouveau/nouveau_display.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/nouveau/nouveau_display.c b/drivers/gpu/drm/nouveau/nouveau_display.c
index 7ce7fa5..973c2d9 100644
--- a/drivers/gpu/drm/nouveau/nouveau_display.c
+++ b/drivers/gpu/drm/nouveau/nouveau_display.c
@@ -841,10 +841,12 @@ nouveau_finish_page_flip(struct nouveau_channel *chan,
s = list_first_entry(&fctx->flip, struct nouveau_page_flip_state, head);
if (s->event) {
+ struct drm_crtc *crtc = drm_crtc_find(dev, s->crtc);
+
if (drm->device.info.family < NV_DEVICE_INFO_V0_TESLA) {
drm_arm_vblank_event(dev, s->crtc, s->event);
} else {
- drm_send_vblank_event(dev, s->crtc, s->event);
+ drm_crtc_send_vblank_event(crtc, s->event);
/* Give up ownership of vblank for page-flipped crtc */
drm_vblank_put(dev, s->crtc);
--
2.5.5
Powered by blists - more mailing lists