diff options
| author | 2025-05-15 10:50:00 +0100 | |
|---|---|---|
| committer | 2025-06-03 17:38:50 +0100 | |
| commit | 5cc809d62b8cca99f832912d8f283a8027386c02 (patch) | |
| tree | fcccce1aa300e0942bf022a60853966aac2d734d /drivers/gpu/drm/i915/i915_request.c | |
| parent | sync_file: Use dma-fence driver and timeline name helpers (diff) | |
| download | wireguard-linux-5cc809d62b8cca99f832912d8f283a8027386c02.tar.xz wireguard-linux-5cc809d62b8cca99f832912d8f283a8027386c02.zip | |
drm/i915: Use dma-fence driver and timeline name helpers
Access the dma-fence internals via the previously added helpers.
Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@igalia.com>
Reviewed-by: Christian König <christian.koenig@amd.com>
Signed-off-by: Tvrtko Ursulin <tursulin@ursulin.net>
Link: https://lore.kernel.org/r/20250515095004.28318-6-tvrtko.ursulin@igalia.com
Diffstat (limited to 'drivers/gpu/drm/i915/i915_request.c')
| -rw-r--r-- | drivers/gpu/drm/i915/i915_request.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/i915/i915_request.c b/drivers/gpu/drm/i915/i915_request.c index c3d27eadc0a7..4874c4f1e4ab 100644 --- a/drivers/gpu/drm/i915/i915_request.c +++ b/drivers/gpu/drm/i915/i915_request.c @@ -2184,7 +2184,7 @@ void i915_request_show(struct drm_printer *m, const char *prefix, int indent) { - const char *name = rq->fence.ops->get_timeline_name((struct dma_fence *)&rq->fence); + const char *name = dma_fence_timeline_name((struct dma_fence *)&rq->fence); char buf[80] = ""; int x = 0; |
