mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-09 16:18:33 +00:00
drm/msm: add extern C guard for the UAPI header
Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com> Acked-by: Rob Clark <robdclark@gmail.com> (over irc)
This commit is contained in:
parent
c56e046f17
commit
a62424e29d
1 changed files with 8 additions and 0 deletions
|
@ -20,6 +20,10 @@
|
||||||
|
|
||||||
#include "drm.h"
|
#include "drm.h"
|
||||||
|
|
||||||
|
#if defined(__cplusplus)
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
|
|
||||||
/* Please note that modifications to all structs defined here are
|
/* Please note that modifications to all structs defined here are
|
||||||
* subject to backwards-compatibility constraints:
|
* subject to backwards-compatibility constraints:
|
||||||
* 1) Do not use pointers, use __u64 instead for 32 bit / 64 bit
|
* 1) Do not use pointers, use __u64 instead for 32 bit / 64 bit
|
||||||
|
@ -217,4 +221,8 @@ struct drm_msm_wait_fence {
|
||||||
#define DRM_IOCTL_MSM_GEM_SUBMIT DRM_IOWR(DRM_COMMAND_BASE + DRM_MSM_GEM_SUBMIT, struct drm_msm_gem_submit)
|
#define DRM_IOCTL_MSM_GEM_SUBMIT DRM_IOWR(DRM_COMMAND_BASE + DRM_MSM_GEM_SUBMIT, struct drm_msm_gem_submit)
|
||||||
#define DRM_IOCTL_MSM_WAIT_FENCE DRM_IOW (DRM_COMMAND_BASE + DRM_MSM_WAIT_FENCE, struct drm_msm_wait_fence)
|
#define DRM_IOCTL_MSM_WAIT_FENCE DRM_IOW (DRM_COMMAND_BASE + DRM_MSM_WAIT_FENCE, struct drm_msm_wait_fence)
|
||||||
|
|
||||||
|
#if defined(__cplusplus)
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
#endif /* __MSM_DRM_H__ */
|
#endif /* __MSM_DRM_H__ */
|
||||||
|
|
Loading…
Add table
Reference in a new issue