summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/virtio/virtgpu_drv.c
diff options
context:
space:
mode:
authorMasahiro Yamada2017-04-24 06:50:34 +0200
committerDaniel Vetter2017-05-18 07:12:31 +0200
commitff67a25d0b1a932ee6e88465b8581273c460bc32 (patch)
treed8e33e6dda3eb19ba12669fbe737488d2650a7e8 /drivers/gpu/drm/virtio/virtgpu_drv.c
parentdrm/tilcdc: fix include notation and remove -Iinclude/drm flag (diff)
downloadkernel-qcow2-linux-ff67a25d0b1a932ee6e88465b8581273c460bc32.tar.gz
kernel-qcow2-linux-ff67a25d0b1a932ee6e88465b8581273c460bc32.tar.xz
kernel-qcow2-linux-ff67a25d0b1a932ee6e88465b8581273c460bc32.zip
drm/virtio: fix include notation and remove -Iinclude/drm flag
Include <drm/*.h> instead of relative path from include/drm, then remove the -Iinclude/drm compiler flag. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch> Link: http://patchwork.freedesktop.org/patch/msgid/1493009447-31524-17-git-send-email-yamada.masahiro@socionext.com
Diffstat (limited to 'drivers/gpu/drm/virtio/virtgpu_drv.c')
-rw-r--r--drivers/gpu/drm/virtio/virtgpu_drv.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpu/drm/virtio/virtgpu_drv.c b/drivers/gpu/drm/virtio/virtgpu_drv.c
index 2d29b0141545..63d35c7e416c 100644
--- a/drivers/gpu/drm/virtio/virtgpu_drv.c
+++ b/drivers/gpu/drm/virtio/virtgpu_drv.c
@@ -29,8 +29,8 @@
#include <linux/module.h>
#include <linux/console.h>
#include <linux/pci.h>
-#include "drmP.h"
-#include "drm/drm.h"
+#include <drm/drmP.h>
+#include <drm/drm.h>
#include "virtgpu_drv.h"
static struct drm_driver driver;