Commit 00fc2c26 authored by Chris Wilson's avatar Chris Wilson Committed by Dave Airlie

drm: Remove unused drm_file parameter to drm_syncobj_replace_fence()

the drm_file parameter is unused, so remove it.
Signed-off-by: default avatarChris Wilson <chris@chris-wilson.co.uk>
Cc: Dave Airlie <airlied@redhat.com>
Reviewed-by: default avatarJason Ekstrand <jason@jlekstrand.net>
Signed-off-by: default avatarDave Airlie <airlied@redhat.com>
parent 97eaf753
...@@ -1069,10 +1069,8 @@ static void amdgpu_cs_post_dependencies(struct amdgpu_cs_parser *p) ...@@ -1069,10 +1069,8 @@ static void amdgpu_cs_post_dependencies(struct amdgpu_cs_parser *p)
{ {
int i; int i;
for (i = 0; i < p->num_post_dep_syncobjs; ++i) { for (i = 0; i < p->num_post_dep_syncobjs; ++i)
drm_syncobj_replace_fence(p->filp, p->post_dep_syncobjs[i], drm_syncobj_replace_fence(p->post_dep_syncobjs[i], p->fence);
p->fence);
}
} }
static int amdgpu_cs_submit(struct amdgpu_cs_parser *p, static int amdgpu_cs_submit(struct amdgpu_cs_parser *p,
......
...@@ -77,17 +77,15 @@ EXPORT_SYMBOL(drm_syncobj_find); ...@@ -77,17 +77,15 @@ EXPORT_SYMBOL(drm_syncobj_find);
/** /**
* drm_syncobj_replace_fence - replace fence in a sync object. * drm_syncobj_replace_fence - replace fence in a sync object.
* @file_private: drm file private pointer.
* @syncobj: Sync object to replace fence in * @syncobj: Sync object to replace fence in
* @fence: fence to install in sync file. * @fence: fence to install in sync file.
* *
* This replaces the fence on a sync object. * This replaces the fence on a sync object.
*/ */
void drm_syncobj_replace_fence(struct drm_file *file_private, void drm_syncobj_replace_fence(struct drm_syncobj *syncobj,
struct drm_syncobj *syncobj,
struct dma_fence *fence) struct dma_fence *fence)
{ {
struct dma_fence *old_fence = NULL; struct dma_fence *old_fence;
if (fence) if (fence)
dma_fence_get(fence); dma_fence_get(fence);
...@@ -292,7 +290,7 @@ int drm_syncobj_import_sync_file_fence(struct drm_file *file_private, ...@@ -292,7 +290,7 @@ int drm_syncobj_import_sync_file_fence(struct drm_file *file_private,
return -ENOENT; return -ENOENT;
} }
drm_syncobj_replace_fence(file_private, syncobj, fence); drm_syncobj_replace_fence(syncobj, fence);
dma_fence_put(fence); dma_fence_put(fence);
drm_syncobj_put(syncobj); drm_syncobj_put(syncobj);
return 0; return 0;
......
...@@ -79,8 +79,7 @@ drm_syncobj_put(struct drm_syncobj *obj) ...@@ -79,8 +79,7 @@ drm_syncobj_put(struct drm_syncobj *obj)
struct drm_syncobj *drm_syncobj_find(struct drm_file *file_private, struct drm_syncobj *drm_syncobj_find(struct drm_file *file_private,
u32 handle); u32 handle);
void drm_syncobj_replace_fence(struct drm_file *file_private, void drm_syncobj_replace_fence(struct drm_syncobj *syncobj,
struct drm_syncobj *syncobj,
struct dma_fence *fence); struct dma_fence *fence);
int drm_syncobj_fence_get(struct drm_file *file_private, int drm_syncobj_fence_get(struct drm_file *file_private,
u32 handle, u32 handle,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment