search for: drm_radeon_info

Displaying 5 results from an estimated 5 matches for "drm_radeon_info".

2016 Apr 21
0
[PATCH 16/24] drm/radeon: add extern C guard for the UAPI header
...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 -- 2.6.2
2016 Apr 21
25
[PATCH 00/24] drm: add extern C guard for the UAPI headers
Hi all, As some of you may know there some subtle distinction between C and C++ structs, thus one should wrap/annotate them roughly like below. ... #if defined(__cplusplus) extern "C" { #endif struct foo { int bar; ... }; ... #if defined(__cplusplus) } #endif In order to work around the lack of these users can wrap the header inclusion in the same way. For example:
2013 Aug 02
3
[PATCH trivial] include: uapi: standard all files' macro prefix and suffix, excluding "linux/" sub-directory
...h +++ b/include/uapi/drm/radeon_drm.h @@ -30,8 +30,8 @@ * Keith Whitwell <keith at tungstengraphics.com> */ -#ifndef __RADEON_DRM_H__ -#define __RADEON_DRM_H__ +#ifndef _UAPI_DRM_RADEON_DRM_H +#define _UAPI_DRM_RADEON_DRM_H #include <drm/drm.h> @@ -1005,4 +1005,4 @@ struct drm_radeon_info { #define SI_TILE_MODE_DEPTH_STENCIL_2D_4AA 3 #define SI_TILE_MODE_DEPTH_STENCIL_2D_8AA 2 -#endif +#endif /* _UAPI_DRM_RADEON_DRM_H */ diff --git a/include/uapi/drm/savage_drm.h b/include/uapi/drm/savage_drm.h index 818d49b..d505252 100644 --- a/include/uapi/drm/savage_drm.h +++ b/include/uapi/...
2013 Aug 02
3
[PATCH trivial] include: uapi: standard all files' macro prefix and suffix, excluding "linux/" sub-directory
...h +++ b/include/uapi/drm/radeon_drm.h @@ -30,8 +30,8 @@ * Keith Whitwell <keith at tungstengraphics.com> */ -#ifndef __RADEON_DRM_H__ -#define __RADEON_DRM_H__ +#ifndef _UAPI_DRM_RADEON_DRM_H +#define _UAPI_DRM_RADEON_DRM_H #include <drm/drm.h> @@ -1005,4 +1005,4 @@ struct drm_radeon_info { #define SI_TILE_MODE_DEPTH_STENCIL_2D_4AA 3 #define SI_TILE_MODE_DEPTH_STENCIL_2D_8AA 2 -#endif +#endif /* _UAPI_DRM_RADEON_DRM_H */ diff --git a/include/uapi/drm/savage_drm.h b/include/uapi/drm/savage_drm.h index 818d49b..d505252 100644 --- a/include/uapi/drm/savage_drm.h +++ b/include/uapi/...
2013 Aug 02
3
[PATCH trivial] include: uapi: standard all files' macro prefix and suffix, excluding "linux/" sub-directory
...h +++ b/include/uapi/drm/radeon_drm.h @@ -30,8 +30,8 @@ * Keith Whitwell <keith at tungstengraphics.com> */ -#ifndef __RADEON_DRM_H__ -#define __RADEON_DRM_H__ +#ifndef _UAPI_DRM_RADEON_DRM_H +#define _UAPI_DRM_RADEON_DRM_H #include <drm/drm.h> @@ -1005,4 +1005,4 @@ struct drm_radeon_info { #define SI_TILE_MODE_DEPTH_STENCIL_2D_4AA 3 #define SI_TILE_MODE_DEPTH_STENCIL_2D_8AA 2 -#endif +#endif /* _UAPI_DRM_RADEON_DRM_H */ diff --git a/include/uapi/drm/savage_drm.h b/include/uapi/drm/savage_drm.h index 818d49b..d505252 100644 --- a/include/uapi/drm/savage_drm.h +++ b/include/uapi/...