Browse Source

drm/virtio: call drm_plane_cleanup() at destroy phase

virtio was missing this call to clean up core plane usage.

Signed-off-by: Gustavo Padovan <gustavo.padovan@collabora.co.uk>
Link: http://patchwork.freedesktop.org/patch/msgid/20170215180009.7091-1-gustavo@padovan.org
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Gustavo Padovan 8 years ago
parent
commit
fb70046cf1
1 changed files with 1 additions and 0 deletions
  1. 1 0
      drivers/gpu/drm/virtio/virtgpu_plane.c

+ 1 - 0
drivers/gpu/drm/virtio/virtgpu_plane.c

@@ -44,6 +44,7 @@ static const uint32_t virtio_gpu_cursor_formats[] = {
 
 static void virtio_gpu_plane_destroy(struct drm_plane *plane)
 {
+	drm_plane_cleanup(plane);
 	kfree(plane);
 }