diff options
author | Gabriel Laskar <gabriel@lse.epita.fr> | 2015-11-30 09:10:51 -0500 |
---|---|---|
committer | Gabriel Laskar <gabriel@lse.epita.fr> | 2015-12-10 06:33:23 -0500 |
commit | 8ca32846322254df34c33aeeb222f77edecfa113 (patch) | |
tree | 5cc14e0fd1701b28e9d567343c108ec9791ed5de | |
parent | 7ef500e431ac2f3bf14f6c39704e5db01ab5a341 (diff) |
drm: fix inclusion of drm.h in qxl_drm.h
Using `#include "drm.h"` instead of `#include <drm/drm.h>` allow drm
headers to be moved in another directory without changes, like for the
libdrm imports.
Signed-off-by: Gabriel Laskar <gabriel@lse.epita.fr>
Reviewed-by: Emil Velikov <emil.l.velikov@gmail.com>
CC: Emil Velikov <emil.l.velikov@gmail.com>
CC: Mikko Rapeli <mikko.rapeli@iki.fi>
-rw-r--r-- | include/uapi/drm/qxl_drm.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/uapi/drm/qxl_drm.h b/include/uapi/drm/qxl_drm.h index dface362d729..4d1e32640463 100644 --- a/include/uapi/drm/qxl_drm.h +++ b/include/uapi/drm/qxl_drm.h | |||
@@ -24,8 +24,7 @@ | |||
24 | #ifndef QXL_DRM_H | 24 | #ifndef QXL_DRM_H |
25 | #define QXL_DRM_H | 25 | #define QXL_DRM_H |
26 | 26 | ||
27 | #include <stddef.h> | 27 | #include "drm.h" |
28 | #include "drm/drm.h" | ||
29 | 28 | ||
30 | /* Please note that modifications to all structs defined here are | 29 | /* Please note that modifications to all structs defined here are |
31 | * subject to backwards-compatibility constraints. | 30 | * subject to backwards-compatibility constraints. |