diff options
author | Emil Velikov <[email protected]> | 2016-04-07 19:40:10 +0100 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2016-05-13 14:06:21 +0100 |
commit | d3450e009f9038f3c7824f64695fa51ef2474e08 (patch) | |
tree | 26e39fa40f0e9adcede52633ce9bea8f62f73d90 | |
parent | 3818081565b01f126c1fcb22f810466fa589cf97 (diff) |
drm/vmwgfx: add extern C guard for the UAPI header
Cc: Thomas Hellstrom <[email protected]>
Cc: Brian Paul <[email protected]>
Signed-off-by: Emil Velikov <[email protected]>
Acked-by: Sinclair Yeh <[email protected]>
-rw-r--r-- | include/uapi/drm/vmwgfx_drm.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/include/uapi/drm/vmwgfx_drm.h b/include/uapi/drm/vmwgfx_drm.h index 5b68b4d10884..d325a4107916 100644 --- a/include/uapi/drm/vmwgfx_drm.h +++ b/include/uapi/drm/vmwgfx_drm.h @@ -30,6 +30,10 @@ #include "drm.h" +#if defined(__cplusplus) +extern "C" { +#endif + #define DRM_VMW_MAX_SURFACE_FACES 6 #define DRM_VMW_MAX_MIP_LEVELS 24 @@ -1087,4 +1091,9 @@ union drm_vmw_extended_context_arg { enum drm_vmw_extended_context req; struct drm_vmw_context_arg rep; }; + +#if defined(__cplusplus) +} +#endif + #endif |