aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c
diff options
context:
space:
mode:
authorAndrey Grodzovsky <andrey.grodzovsky@amd.com>2018-06-05 12:43:23 -0400
committerAlex Deucher <alexander.deucher@amd.com>2018-07-05 17:38:45 -0400
commit180fc134d712a93a2bbc3d11ed657b5208e6f90f (patch)
treedc13aba9cf9d8baa5ed252a26d4a8cde6c0abc98 /drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c
parentf3efec54ed6ac05ba63be1bd93bd741d41b6eb37 (diff)
drm/scheduler: Rename cleanup functions v2.
Everything in the flush code path (i.e. waiting for SW queue to become empty) names with *_flush() and everything in the release code path names *_fini() This patch also effect the amdgpu and etnaviv drivers which use those functions. v2: Also pplay the change to vd3. Signed-off-by: Andrey Grodzovsky <andrey.grodzovsky@amd.com> Suggested-by: Christian König <christian.koenig@amd.com> Acked-by: Lucas Stach <l.stach@pengutronix.de> Reviewed-by: Christian König <christian.koenig@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c')
-rw-r--r--drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c
index 0c084d3d0865..0246cb87d9e4 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c
@@ -162,7 +162,7 @@ error_mem:
162static void amdgpu_ttm_global_fini(struct amdgpu_device *adev) 162static void amdgpu_ttm_global_fini(struct amdgpu_device *adev)
163{ 163{
164 if (adev->mman.mem_global_referenced) { 164 if (adev->mman.mem_global_referenced) {
165 drm_sched_entity_fini(adev->mman.entity.sched, 165 drm_sched_entity_destroy(adev->mman.entity.sched,
166 &adev->mman.entity); 166 &adev->mman.entity);
167 mutex_destroy(&adev->mman.gtt_window_lock); 167 mutex_destroy(&adev->mman.gtt_window_lock);
168 drm_global_item_unref(&adev->mman.bo_global_ref.ref); 168 drm_global_item_unref(&adev->mman.bo_global_ref.ref);