aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEmil Velikov <emil.l.velikov@gmail.com>2016-04-07 14:12:25 -0400
committerEmil Velikov <emil.l.velikov@gmail.com>2016-05-13 09:06:13 -0400
commit99be554c23096ff35fb49d94df730168b1baece3 (patch)
tree8758adf85e44cda7400819faaabdcba2b0cdcfa0
parent485c40b467a25a4e376d283c7bc679b6d20caa52 (diff)
drm/r128: add extern C guard for the UAPI header
Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
-rw-r--r--include/uapi/drm/r128_drm.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/include/uapi/drm/r128_drm.h b/include/uapi/drm/r128_drm.h
index 7a44c6500a7e..690e9c62f510 100644
--- a/include/uapi/drm/r128_drm.h
+++ b/include/uapi/drm/r128_drm.h
@@ -35,6 +35,10 @@
35 35
36#include "drm.h" 36#include "drm.h"
37 37
38#if defined(__cplusplus)
39extern "C" {
40#endif
41
38/* WARNING: If you change any of these defines, make sure to change the 42/* WARNING: If you change any of these defines, make sure to change the
39 * defines in the X server file (r128_sarea.h) 43 * defines in the X server file (r128_sarea.h)
40 */ 44 */
@@ -325,4 +329,8 @@ typedef struct drm_r128_getparam {
325 void __user *value; 329 void __user *value;
326} drm_r128_getparam_t; 330} drm_r128_getparam_t;
327 331
332#if defined(__cplusplus)
333}
334#endif
335
328#endif 336#endif