From: Emil Velikov Date: Thu, 7 Apr 2016 18:14:34 +0000 (+0100) Subject: drm/savage: add extern C guard for the UAPI header X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=ea526b7f17a4f27202aa368a6ac4668826f75d4a;p=deliverable%2Flinux.git drm/savage: add extern C guard for the UAPI header Signed-off-by: Emil Velikov --- diff --git a/include/uapi/drm/savage_drm.h b/include/uapi/drm/savage_drm.h index 574147489c60..0f6eddef74aa 100644 --- a/include/uapi/drm/savage_drm.h +++ b/include/uapi/drm/savage_drm.h @@ -28,6 +28,10 @@ #include "drm.h" +#if defined(__cplusplus) +extern "C" { +#endif + #ifndef __SAVAGE_SAREA_DEFINES__ #define __SAVAGE_SAREA_DEFINES__ @@ -209,4 +213,8 @@ union drm_savage_cmd_header { } clear1; /* SAVAGE_CMD_CLEAR data */ }; +#if defined(__cplusplus) +} +#endif + #endif