From: Emil Velikov Date: Thu, 7 Apr 2016 18:06:40 +0000 (+0100) Subject: drm/omap: add extern C guard for the UAPI header X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=c92378a06181456c4d8e45a33764c8524c15b99b;p=deliverable%2Flinux.git drm/omap: add extern C guard for the UAPI header Cc: Laurent Pinchart Signed-off-by: Emil Velikov Acked-by: Tomi Valkeinen --- diff --git a/include/uapi/drm/omap_drm.h b/include/uapi/drm/omap_drm.h index 38a3bd847e15..407cb55df6ac 100644 --- a/include/uapi/drm/omap_drm.h +++ b/include/uapi/drm/omap_drm.h @@ -22,6 +22,10 @@ #include "drm.h" +#if defined(__cplusplus) +extern "C" { +#endif + /* Please note that modifications to all structs defined here are * subject to backwards-compatibility constraints. */ @@ -114,4 +118,8 @@ struct drm_omap_gem_info { #define DRM_IOCTL_OMAP_GEM_CPU_FINI DRM_IOW (DRM_COMMAND_BASE + DRM_OMAP_GEM_CPU_FINI, struct drm_omap_gem_cpu_fini) #define DRM_IOCTL_OMAP_GEM_INFO DRM_IOWR(DRM_COMMAND_BASE + DRM_OMAP_GEM_INFO, struct drm_omap_gem_info) +#if defined(__cplusplus) +} +#endif + #endif /* __OMAP_DRM_H__ */