Skip to content

Commit 03f716f

Browse files
committed
drm: renesas: shmobile: Use drm_crtc_handle_vblank()
Replace the call to the legacy drm_handle_vblank() function with a call to the new drm_crtc_handle_vblank() helper. Reviewed-by: Laurent Pinchart <[email protected]> Reviewed-by: Sui Jingfeng <[email protected]> Signed-off-by: Geert Uytterhoeven <[email protected]> Link: https://lore.kernel.org/r/bef278cc9b7536505f41faaa2f13184d9354fa7e.1694767209.git.geert+renesas@glider.be
1 parent a83d383 commit 03f716f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/gpu/drm/renesas/shmobile/shmob_drm_drv.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ static irqreturn_t shmob_drm_irq(int irq, void *arg)
8686
spin_unlock_irqrestore(&sdev->irq_lock, flags);
8787

8888
if (status & LDINTR_VES) {
89-
drm_handle_vblank(dev, 0);
89+
drm_crtc_handle_vblank(&sdev->crtc.base);
9090
shmob_drm_crtc_finish_page_flip(&sdev->crtc);
9191
}
9292

0 commit comments

Comments
 (0)