diff options
author | Gabriel Laskar <gabriel@lse.epita.fr> | 2015-11-30 14:10:46 (GMT) |
---|---|---|
committer | Gabriel Laskar <gabriel@lse.epita.fr> | 2015-12-10 11:33:23 (GMT) |
commit | 13635d6120b9d6607fbf2622066bebfd7416e545 (patch) | |
tree | b61f20f26178bac89be227d57c616fadef6261a2 | |
parent | 19b1e97aefde813f92a40699200fe1cf73f07da2 (diff) | |
download | linux-13635d6120b9d6607fbf2622066bebfd7416e545.tar.xz |
drm: fix inclusion of drm.h in i810_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/i810_drm.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/uapi/drm/i810_drm.h b/include/uapi/drm/i810_drm.h index 34736ef..bdb0287 100644 --- a/include/uapi/drm/i810_drm.h +++ b/include/uapi/drm/i810_drm.h @@ -1,7 +1,7 @@ #ifndef _I810_DRM_H_ #define _I810_DRM_H_ -#include <drm/drm.h> +#include "drm.h" /* WARNING: These defines must be the same as what the Xserver uses. * if you change them, you must change the defines in the Xserver. |