diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2017-07-05 23:12:44 +0300 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2017-07-06 08:53:00 +0300 |
commit | 00fc2c26bc46a64545cdf95a1511461ea9acecb4 (patch) | |
tree | 83a70bafccc00dadac0550478d47b00859e2b516 /include/drm | |
parent | 97eaf7533859013cc4a81dcddf94ef3dcac418e4 (diff) | |
download | linux-00fc2c26bc46a64545cdf95a1511461ea9acecb4.tar.xz |
drm: Remove unused drm_file parameter to drm_syncobj_replace_fence()
the drm_file parameter is unused, so remove it.
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Cc: Dave Airlie <airlied@redhat.com>
Reviewed-by: Jason Ekstrand <jason@jlekstrand.net>
Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'include/drm')
-rw-r--r-- | include/drm/drm_syncobj.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/drm/drm_syncobj.h b/include/drm/drm_syncobj.h index 2c3610a4a074..89976da542b1 100644 --- a/include/drm/drm_syncobj.h +++ b/include/drm/drm_syncobj.h @@ -79,8 +79,7 @@ drm_syncobj_put(struct drm_syncobj *obj) struct drm_syncobj *drm_syncobj_find(struct drm_file *file_private, u32 handle); -void drm_syncobj_replace_fence(struct drm_file *file_private, - struct drm_syncobj *syncobj, +void drm_syncobj_replace_fence(struct drm_syncobj *syncobj, struct dma_fence *fence); int drm_syncobj_fence_get(struct drm_file *file_private, u32 handle, |