From: Emil Velikov Date: Thu, 7 Apr 2016 18:12:25 +0000 (+0100) Subject: drm/r128: add extern C guard for the UAPI header X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=99be554c23096ff35fb49d94df730168b1baece3;p=deliverable%2Flinux.git drm/r128: add extern C guard for the UAPI header Signed-off-by: Emil Velikov --- 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 @@ #include "drm.h" +#if defined(__cplusplus) +extern "C" { +#endif + /* WARNING: If you change any of these defines, make sure to change the * defines in the X server file (r128_sarea.h) */ @@ -325,4 +329,8 @@ typedef struct drm_r128_getparam { void __user *value; } drm_r128_getparam_t; +#if defined(__cplusplus) +} +#endif + #endif