From: Emil Velikov Date: Wed, 28 Oct 2015 11:47:18 +0000 (+0000) Subject: virgl: fix drm.h include path X-Git-Tag: upstream/17.1.0~14934 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c1bf71f77c9d4bc83fa7dc987b56f98350430d7c;p=platform%2Fupstream%2Fmesa.git virgl: fix drm.h include path The drm/ prefix is required, if using the kernel provided headers. As most distros don't ship them it and we already depend on libdrm (which adds the relevant -I flag) just drop the drm/ from the include. Once a libdrm release with the virtgpu_drm.h header is released, we can drop our local copy of the file. Signed-off-by: Emil Velikov Reviewed-by: Dave Airlie --- diff --git a/src/gallium/winsys/virgl/drm/virtgpu_drm.h b/src/gallium/winsys/virgl/drm/virtgpu_drm.h index fcc789e..30bc3af 100644 --- a/src/gallium/winsys/virgl/drm/virtgpu_drm.h +++ b/src/gallium/winsys/virgl/drm/virtgpu_drm.h @@ -25,7 +25,7 @@ #define VIRTGPU_DRM_H #include -#include "drm/drm.h" +#include "drm.h" /* Please note that modifications to all structs defined here are * subject to backwards-compatibility constraints.