aboutsummaryrefslogtreecommitdiffstats
path: root/include/uapi/drm/drm_fourcc.h
diff options
context:
space:
mode:
authorEmil Velikov <emil.l.velikov@gmail.com>2016-04-07 18:49:00 +0100
committerEmil Velikov <emil.l.velikov@gmail.com>2016-05-13 13:57:17 +0100
commitebbb0e5cfd2ceb1150b1af7f9fcf7aeebfb1b69f (patch)
treef4a6b0f01b2edd7c0108ae327518c990114f66f9 /include/uapi/drm/drm_fourcc.h
parentdrm/armada: add extern C guard for the UAPI header (diff)
downloadlinux-dev-ebbb0e5cfd2ceb1150b1af7f9fcf7aeebfb1b69f.tar.xz
linux-dev-ebbb0e5cfd2ceb1150b1af7f9fcf7aeebfb1b69f.zip
drm: add extern C guard for the UAPI headers
Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
Diffstat (limited to 'include/uapi/drm/drm_fourcc.h')
-rw-r--r--include/uapi/drm/drm_fourcc.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/include/uapi/drm/drm_fourcc.h b/include/uapi/drm/drm_fourcc.h
index 4d8da699a623..a5890bf44c0a 100644
--- a/include/uapi/drm/drm_fourcc.h
+++ b/include/uapi/drm/drm_fourcc.h
@@ -26,6 +26,10 @@
#include "drm.h"
+#if defined(__cplusplus)
+extern "C" {
+#endif
+
#define fourcc_code(a, b, c, d) ((__u32)(a) | ((__u32)(b) << 8) | \
((__u32)(c) << 16) | ((__u32)(d) << 24))
@@ -229,4 +233,8 @@
*/
#define DRM_FORMAT_MOD_SAMSUNG_64_32_TILE fourcc_mod_code(SAMSUNG, 1)
+#if defined(__cplusplus)
+}
+#endif
+
#endif /* DRM_FOURCC_H */