[PATCH] drm/msm: Rename drm_msm_gem_submit_reloc::or in C++ code

From: Rob Clark
Date: Sun Mar 26 2023 - 12:38:32 EST


From: Danylo Piliaiev <dpiliaiev@xxxxxxxxxx>

Clashes with C++ `or` keyword

Signed-off-by: Danylo Piliaiev <dpiliaiev@xxxxxxxxxx>
Signed-off-by: Rob Clark <robdclark@xxxxxxxxxxxx>
---
This is a port of a C++ compat fix that was made in mesa's copy of the
drm uapi headers.

include/uapi/drm/msm_drm.h | 4 ++++
1 file changed, 4 insertions(+)

diff --git a/include/uapi/drm/msm_drm.h b/include/uapi/drm/msm_drm.h
index dbf0d6f43fa9..6c34272a13fd 100644
--- a/include/uapi/drm/msm_drm.h
+++ b/include/uapi/drm/msm_drm.h
@@ -186,7 +186,11 @@ struct drm_msm_gem_cpu_fini {
*/
struct drm_msm_gem_submit_reloc {
__u32 submit_offset; /* in, offset from submit_bo */
+#ifdef __cplusplus
+ __u32 _or; /* in, value OR'd with result */
+#else
__u32 or; /* in, value OR'd with result */
+#endif
__s32 shift; /* in, amount of left shift (can be negative) */
__u32 reloc_idx; /* in, index of reloc_bo buffer */
__u64 reloc_offset; /* in, offset from start of reloc_bo */
--
2.39.2