From: Emil Velikov Date: Thu, 7 Apr 2016 18:13:24 +0000 (+0100) Subject: drm/radeon: add extern C guard for the UAPI header X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=6db26a941461cc5a544c737cf654c346b2a8da07;p=deliverable%2Flinux.git drm/radeon: add extern C guard for the UAPI header Cc: Alex Deucher Cc: Christian König Signed-off-by: Emil Velikov --- diff --git a/include/uapi/drm/radeon_drm.h b/include/uapi/drm/radeon_drm.h index ccb9bcd82685..490a59cc4532 100644 --- a/include/uapi/drm/radeon_drm.h +++ b/include/uapi/drm/radeon_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 (radeon_sarea.h) */ @@ -1067,4 +1071,8 @@ struct drm_radeon_info { #define CIK_TILE_MODE_DEPTH_STENCIL_1D 5 +#if defined(__cplusplus) +} +#endif + #endif