drm/atmel: use drm_crtc_send_vblank_event()
authorGustavo Padovan <gustavo.padovan@collabora.co.uk>
Mon, 6 Jun 2016 14:41:34 +0000 (11:41 -0300)
committerDaniel Vetter <daniel.vetter@ffwll.ch>
Mon, 6 Jun 2016 16:02:56 +0000 (18:02 +0200)
Replace the legacy drm_send_vblank_event() with the new helper function.

Signed-off-by: Gustavo Padovan <gustavo.padovan@collabora.co.uk>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Link: http://patchwork.freedesktop.org/patch/msgid/1465224105-21485-3-git-send-email-gustavo@padovan.org
drivers/gpu/drm/atmel-hlcdc/atmel_hlcdc_crtc.c

index cf23a755f777f8b4df9fcc6b3032c01415c14bd8..6fca9c41dc4f628b6e8a0e8d8a11ec8c01e7c74d 100644 (file)
@@ -374,7 +374,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;
        }
This page took 0.026637 seconds and 5 git commands to generate.