diff options
author | Gerd Hoffmann <[email protected]> | 2016-10-18 15:32:30 -0200 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2016-11-03 10:14:19 +1000 |
commit | eed6f0eda0a009c282bcdd828c273e1239ae0cac (patch) | |
tree | 7f2a0a9830d7e1bf1c57ef844de5b41537c33f64 | |
parent | b0a6af8b34c9ad20894aa46f85f4bf59d444f286 (diff) |
virtio-gpu: fix vblank events
virtio-gpu sends vblank events in virtio_gpu_crtc_atomic_flush, and
because of that it must be called for disabled planes too. Ask
drm_atomic_helper_commit_planes to do that.
v2: update to use new drm_atomic_helper_commit_planes() API.
Signed-off-by: Gerd Hoffmann <[email protected]>
Signed-off-by: Gustavo Padovan <[email protected]>
Signed-off-by: Dave Airlie <[email protected]>
-rw-r--r-- | drivers/gpu/drm/virtio/virtgpu_display.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/gpu/drm/virtio/virtgpu_display.c b/drivers/gpu/drm/virtio/virtgpu_display.c index 7cf3678623c3..58048709c34e 100644 --- a/drivers/gpu/drm/virtio/virtgpu_display.c +++ b/drivers/gpu/drm/virtio/virtgpu_display.c @@ -338,8 +338,7 @@ static void vgdev_atomic_commit_tail(struct drm_atomic_state *state) drm_atomic_helper_commit_modeset_disables(dev, state); drm_atomic_helper_commit_modeset_enables(dev, state); - drm_atomic_helper_commit_planes(dev, state, - DRM_PLANE_COMMIT_ACTIVE_ONLY); + drm_atomic_helper_commit_planes(dev, state, 0); drm_atomic_helper_commit_hw_done(state); |