diff options
author | Matthew Brost <matthew.brost@intel.com> | 2024-02-13 07:32:51 +0300 |
---|---|---|
committer | Matthew Brost <matthew.brost@intel.com> | 2024-02-14 20:42:47 +0300 |
commit | 761b333718cf86a01067400950f1cf48f2e375fc (patch) | |
tree | e2886eefd2e34381c2fd370e405b57b9d72a0ac7 /drivers/gpu/drm/xe/xe_exec_queue.c | |
parent | 9bc36e58d162466236a38489e4b41f38a8848c94 (diff) | |
download | linux-761b333718cf86a01067400950f1cf48f2e375fc.tar.xz |
drm/xe: Remove exec queue bind.fence_*
struct xe_exec_queue bind.fence_* members are unused. Remove these.
Signed-off-by: Matthew Brost <matthew.brost@intel.com>
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20240213043251.3482928-1-matthew.brost@intel.com
Diffstat (limited to 'drivers/gpu/drm/xe/xe_exec_queue.c')
-rw-r--r-- | drivers/gpu/drm/xe/xe_exec_queue.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/drivers/gpu/drm/xe/xe_exec_queue.c b/drivers/gpu/drm/xe/xe_exec_queue.c index 2976635be4d3..da84ac93a559 100644 --- a/drivers/gpu/drm/xe/xe_exec_queue.c +++ b/drivers/gpu/drm/xe/xe_exec_queue.c @@ -94,10 +94,6 @@ static struct xe_exec_queue *__xe_exec_queue_alloc(struct xe_device *xe, q->parallel.composite_fence_ctx = dma_fence_context_alloc(1); q->parallel.composite_fence_seqno = XE_FENCE_INITIAL_SEQNO; } - if (q->flags & EXEC_QUEUE_FLAG_VM) { - q->bind.fence_ctx = dma_fence_context_alloc(1); - q->bind.fence_seqno = XE_FENCE_INITIAL_SEQNO; - } return q; } |