diff options
author | Matthew Brost <matthew.brost@intel.com> | 2024-02-01 21:48:44 +0300 |
---|---|---|
committer | Matthew Brost <matthew.brost@intel.com> | 2024-02-02 05:43:11 +0300 |
commit | 5fcbf83e39ecde8e54c0b3da3a755a306a0ac348 (patch) | |
tree | c6f704e8406e15c84f70393ea3ffed860394d7f7 /drivers/gpu/drm/xe/xe_pt.c | |
parent | 3acc1ff1a72fce00cdbd3ef1c27108a967fd5616 (diff) | |
download | linux-5fcbf83e39ecde8e54c0b3da3a755a306a0ac348.tar.xz |
drm/xe: Drop rebind argument from xe_pt_prepare_bind
This is unused, drop it.
Signed-off-by: Matthew Brost <matthew.brost@intel.com>
Reviewed-by: Oak Zeng <oak.zeng@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20240201184844.2317004-1-matthew.brost@intel.com
Diffstat (limited to 'drivers/gpu/drm/xe/xe_pt.c')
-rw-r--r-- | drivers/gpu/drm/xe/xe_pt.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/gpu/drm/xe/xe_pt.c b/drivers/gpu/drm/xe/xe_pt.c index e45b37c3f0c2..3a99bf6e558f 100644 --- a/drivers/gpu/drm/xe/xe_pt.c +++ b/drivers/gpu/drm/xe/xe_pt.c @@ -861,8 +861,7 @@ static void xe_pt_commit_bind(struct xe_vma *vma, static int xe_pt_prepare_bind(struct xe_tile *tile, struct xe_vma *vma, - struct xe_vm_pgtable_update *entries, u32 *num_entries, - bool rebind) + struct xe_vm_pgtable_update *entries, u32 *num_entries) { int err; @@ -1218,7 +1217,7 @@ __xe_pt_bind_vma(struct xe_tile *tile, struct xe_vma *vma, struct xe_exec_queue "Preparing bind, with range [%llx...%llx) engine %p.\n", xe_vma_start(vma), xe_vma_end(vma), q); - err = xe_pt_prepare_bind(tile, vma, entries, &num_entries, rebind); + err = xe_pt_prepare_bind(tile, vma, entries, &num_entries); if (err) goto err; xe_tile_assert(tile, num_entries <= ARRAY_SIZE(entries)); |