diff options
author | Chunming Zhou <david1.zhou@amd.com> | 2018-08-30 14:48:30 +0800 |
---|---|---|
committer | Christian König <easy2remember.chk@googlemail.com> | 2018-09-06 11:09:31 +0200 |
commit | 9a09a42369a4a37a959c051d8e1a1f948c1529a4 (patch) | |
tree | 1cb1e1780dd72a55cc736e4d50b4841c3c7d3012 /include | |
parent | 0a6730ea27b68c7ac4171c29a816c29d26a9637a (diff) | |
download | linux-9a09a42369a4a37a959c051d8e1a1f948c1529a4.tar.bz2 |
drm: expand replace_fence to support timeline point v2
we can place a fence to a timeline point after expanded.
v2: change func parameter order
Signed-off-by: Chunming Zhou <david1.zhou@amd.com>
Reviewed-by: Christian König <christian.koenig@amd.com>
Signed-off-by: Christian König <christian.koenig@amd.com>
Link: https://patchwork.freedesktop.org/patch/246543/
Diffstat (limited to 'include')
-rw-r--r-- | include/drm/drm_syncobj.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/drm/drm_syncobj.h b/include/drm/drm_syncobj.h index ab9055f943c7..425432b85a87 100644 --- a/include/drm/drm_syncobj.h +++ b/include/drm/drm_syncobj.h @@ -131,7 +131,7 @@ drm_syncobj_fence_get(struct drm_syncobj *syncobj) struct drm_syncobj *drm_syncobj_find(struct drm_file *file_private, u32 handle); -void drm_syncobj_replace_fence(struct drm_syncobj *syncobj, +void drm_syncobj_replace_fence(struct drm_syncobj *syncobj, u64 point, struct dma_fence *fence); int drm_syncobj_find_fence(struct drm_file *file_private, u32 handle, u64 point, |