diff options
author | Tvrtko Ursulin <tvrtko.ursulin@igalia.com> | 2025-01-08 18:35:11 +0000 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2025-01-14 11:06:50 -0500 |
commit | e996127ec1aabecc33e405de42e7e1cbfae39315 (patch) | |
tree | 9202eef19bce02124afdf2686268ddab7450636a /drivers/gpu/drm/amd/amdgpu/amdgpu_xcp.c | |
parent | 2affe2bbc997b3920045c2c434e480c81a5f9707 (diff) | |
download | linux-e996127ec1aabecc33e405de42e7e1cbfae39315.tar.gz linux-e996127ec1aabecc33e405de42e7e1cbfae39315.tar.bz2 linux-e996127ec1aabecc33e405de42e7e1cbfae39315.zip |
drm/amdgpu: Use DRM scheduler API in amdgpu_xcp_release_sched
Lets use the existing helper instead of peeking into the structure
directly.
Reviewed-by: Christian König <christian.koenig@amd.com>
Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@igalia.com>
Cc: Christian König <christian.koenig@amd.com>
Cc: Danilo Krummrich <dakr@redhat.com>
Cc: Matthew Brost <matthew.brost@intel.com>
Cc: Philipp Stanner <pstanner@redhat.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/amdgpu_xcp.c')
-rw-r--r-- | drivers/gpu/drm/amd/amdgpu/amdgpu_xcp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_xcp.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_xcp.c index e209b5e101df..23b6f7a4aa4a 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_xcp.c +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_xcp.c @@ -427,7 +427,7 @@ void amdgpu_xcp_release_sched(struct amdgpu_device *adev, return; sched = entity->entity.rq->sched; - if (sched->ready) { + if (drm_sched_wqueue_ready(sched)) { ring = to_amdgpu_ring(entity->entity.rq->sched); atomic_dec(&adev->xcp_mgr->xcp[ring->xcp_id].ref_cnt); } |