summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorChunming Zhou <david1.zhou@amd.com>2019-10-24 14:42:13 +0800
committerChunming Zhou <david1.zhou@amd.com>2019-10-26 03:11:14 +0000
commit07f671759507cccec004e23c6344b93f947a38e3 (patch)
tree5c2eed28c5d07d0526e529d96d8166c93e35e355 /include
parentc69c9c4f4eaaea302e41e3ffd5f7b6d4bcc6a37a (diff)
downloaddrm-07f671759507cccec004e23c6344b93f947a38e3.tar.gz
sync up drm.h
a) delta: drm: use pad as flags in drm_syncobj_timeline_array. b) Generated using make headers_install. c) Generated from origin/drm-misc-next commit 949561eb85bcee10248e7da51d44a0325d5e0d1b" Signed-off-by: Chunming Zhou <david1.zhou@amd.com>
Diffstat (limited to 'include')
-rw-r--r--include/drm/drm.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/drm/drm.h b/include/drm/drm.h
index 438abde3..ab940339 100644
--- a/include/drm/drm.h
+++ b/include/drm/drm.h
@@ -772,11 +772,12 @@ struct drm_syncobj_array {
__u32 pad;
};
+#define DRM_SYNCOBJ_QUERY_FLAGS_LAST_SUBMITTED (1 << 0) /* last available point on timeline syncobj */
struct drm_syncobj_timeline_array {
__u64 handles;
__u64 points;
__u32 count_handles;
- __u32 pad;
+ __u32 flags;
};