iris: Replace I915_EXEC_FENCE_SIGNAL by IRIS_BATCH_FENCE_SIGNAL in common code

This I915_EXEC_FENCE_SIGNAL was missed in the conversion from i915_drm.h
types to IRIS ones.
Both have the same value, so it was not causing any issues.

Signed-off-by: José Roberto de Souza <jose.souza@intel.com>
Reviewed-by: Marcin Ślusarz <marcin.slusarz@intel.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/23905>
This commit is contained in:
José Roberto de Souza 2023-06-23 16:39:03 -07:00 committed by Marge Bot
parent 1174e7412e
commit 0579627f21

View file

@ -601,7 +601,7 @@ iris_fence_signal(struct pipe_context *ctx,
continue;
batch->contains_fence_signal = true;
iris_batch_add_syncobj(batch, fine->syncobj, I915_EXEC_FENCE_SIGNAL);
iris_batch_add_syncobj(batch, fine->syncobj, IRIS_BATCH_FENCE_SIGNAL);
}
if (batch->contains_fence_signal)
iris_batch_flush(batch);