From: Emil Velikov Date: Thu, 7 Apr 2016 17:59:30 +0000 (+0100) Subject: drm/i810: add extern C guard for the UAPI header X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=79e7328db71350e652a963aa6049d13e272a6d24;p=deliverable%2Flinux.git drm/i810: add extern C guard for the UAPI header Signed-off-by: Emil Velikov Acked-by: Daniel Vetter --- diff --git a/include/uapi/drm/i810_drm.h b/include/uapi/drm/i810_drm.h index bdb028723ded..6e6cf86b75b0 100644 --- a/include/uapi/drm/i810_drm.h +++ b/include/uapi/drm/i810_drm.h @@ -3,6 +3,10 @@ #include "drm.h" +#if defined(__cplusplus) +extern "C" { +#endif + /* WARNING: These defines must be the same as what the Xserver uses. * if you change them, you must change the defines in the Xserver. */ @@ -280,4 +284,8 @@ typedef struct _drm_i810_mc { unsigned int last_render; /* Last Render Request */ } drm_i810_mc_t; +#if defined(__cplusplus) +} +#endif + #endif /* _I810_DRM_H_ */