Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1379169
| From | Gustavo Padovan <gustavo@padovan.org> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH 03/14] drm/atmel: use drm_crtc_send_vblank_event() |
| Date | 2016-04-14 20:00 +0200 |
| Message-ID | <rnTIC-5Nb-1@gated-at.bofh.it> (permalink) |
| References | <rnTyW-5JF-7@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
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/atmel-hlcdc/atmel_hlcdc_crtc.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/atmel-hlcdc/atmel_hlcdc_crtc.c b/drivers/gpu/drm/atmel-hlcdc/atmel_hlcdc_crtc.c
index 58c4f78..a299a71 100644
--- a/drivers/gpu/drm/atmel-hlcdc/atmel_hlcdc_crtc.c
+++ b/drivers/gpu/drm/atmel-hlcdc/atmel_hlcdc_crtc.c
@@ -279,7 +279,7 @@ static void atmel_hlcdc_crtc_finish_page_flip(struct atmel_hlcdc_crtc *crtc)
spin_lock_irqsave(&dev->event_lock, flags);
if (crtc->event) {
- drm_send_vblank_event(dev, crtc->id, crtc->event);
+ drm_crtc_send_vblank_event(&crtc->base, crtc->event);
drm_vblank_put(dev, crtc->id);
crtc->event = NULL;
}
--
2.5.5
Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
[PATCH 01/14] drm/amdgpu: use drm_crtc_send_vblank_event() Gustavo Padovan <gustavo@padovan.org> - 2016-04-14 19:50 +0200
[PATCH 03/14] drm/atmel: use drm_crtc_send_vblank_event() Gustavo Padovan <gustavo@padovan.org> - 2016-04-14 20:00 +0200
[PATCH 10/14] drm/shmobile: use drm_crtc_send_vblank_event() Gustavo Padovan <gustavo@padovan.org> - 2016-04-14 20:00 +0200
Re: [PATCH 10/14] drm/shmobile: use drm_crtc_send_vblank_event() Laurent Pinchart <laurent.pinchart@ideasonboard.com> - 2016-04-15 00:00 +0200
[PATCH 12/14] drm/udl: use drm_crtc_send_vblank_event() Gustavo Padovan <gustavo@padovan.org> - 2016-04-14 20:00 +0200
[PATCH 09/14] drm/rcar-du: use drm_crtc_send_vblank_event() Gustavo Padovan <gustavo@padovan.org> - 2016-04-14 20:00 +0200
Re: [PATCH 09/14] drm/rcar-du: use drm_crtc_send_vblank_event() Laurent Pinchart <laurent.pinchart@ideasonboard.com> - 2016-04-15 00:00 +0200
[PATCH 08/14] drm/radeon: use drm_crtc_send_vblank_event() Gustavo Padovan <gustavo@padovan.org> - 2016-04-14 20:00 +0200
[PATCH 14/14] drm: remove legacy drm_send_vblank_event() Gustavo Padovan <gustavo@padovan.org> - 2016-04-14 20:00 +0200
[PATCH 06/14] drm/qxl: use drm_crtc_send_vblank_event() Gustavo Padovan <gustavo@padovan.org> - 2016-04-14 20:00 +0200
[PATCH 13/14] drm/virtio: use drm_crtc_send_vblank_event() Gustavo Padovan <gustavo@padovan.org> - 2016-04-14 20:00 +0200
Re: [PATCH 01/14] drm/amdgpu: use drm_crtc_send_vblank_event() Michel Dänzer <michel@daenzer.net> - 2016-04-15 05:00 +0200
csiph-web