From: Andrzej Hajda Date: Tue, 13 Dec 2022 12:19:50 +0000 (+0100) Subject: drm/i915: use proper helper in igt_vma_move_to_active_unlocked X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=f350c74fed66a41a6d5a8f4305e735f9c8b266ca;p=linux.git drm/i915: use proper helper in igt_vma_move_to_active_unlocked There is no need to use _i915_vma_move_to_active. No functional changes. Signed-off-by: Andrzej Hajda Reviewed-by: Tvrtko Ursulin Reviewed-by: Andi Shyti Signed-off-by: Andi Shyti Link: https://patchwork.freedesktop.org/patch/msgid/20221213121951.1515023-1-andrzej.hajda@intel.com --- diff --git a/drivers/gpu/drm/i915/gem/selftests/igt_gem_utils.h b/drivers/gpu/drm/i915/gem/selftests/igt_gem_utils.h index 1379fbc144312..71a3ca8a88650 100644 --- a/drivers/gpu/drm/i915/gem/selftests/igt_gem_utils.h +++ b/drivers/gpu/drm/i915/gem/selftests/igt_gem_utils.h @@ -38,7 +38,7 @@ igt_vma_move_to_active_unlocked(struct i915_vma *vma, struct i915_request *rq, int err; i915_vma_lock(vma); - err = _i915_vma_move_to_active(vma, rq, &rq->fence, flags); + err = i915_vma_move_to_active(vma, rq, flags); i915_vma_unlock(vma); return err; }