diff options
author | Russell King <rmk@armlinux.org.uk> | 2018-07-13 16:57:45 +0100 |
---|---|---|
committer | Russell King <rmk@armlinux.org.uk> | 2018-07-13 16:58:52 +0100 |
commit | cd705855b4e02b398e7284df2c0de03092ca27e0 (patch) | |
tree | 83316ee26d18d85246b090ca9a0c76bc827849d8 | |
parent | e8c41fd1998236eebdd87289e44a572cc2519b11 (diff) |
common: correct path for drm_fourcc.h include
Correct the path for the drm_fourcc.h include - the "drm" version is
the C library derived version from the kernel includes it was built
with, rather than the libdrm version.
Signed-off-by: Russell King <rmk@armlinux.org.uk>
-rw-r--r-- | common/fourcc.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/common/fourcc.h b/common/fourcc.h index efe2d62..f33ab4b 100644 --- a/common/fourcc.h +++ b/common/fourcc.h @@ -1,7 +1,8 @@ #ifndef COMMON_FOURCC_H #define COMMON_FOURCC_H -#include <drm/drm_fourcc.h> +/* pick up the libdrm fourcc.h. */ +#include <drm_fourcc.h> /* pick up on the Xorg fourcc.h. */ #include <fourcc.h> |