aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/amd/amdgpu/amdgpu.h
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/amdgpu.h')
-rw-r--r--drivers/gpu/drm/amd/amdgpu/amdgpu.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu.h b/drivers/gpu/drm/amd/amdgpu/amdgpu.h
index d050f503d9ff..4addac5f6763 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu.h
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu.h
@@ -440,9 +440,12 @@ int amdgpu_fence_wait_next(struct amdgpu_ring *ring);
440int amdgpu_fence_wait_empty(struct amdgpu_ring *ring); 440int amdgpu_fence_wait_empty(struct amdgpu_ring *ring);
441unsigned amdgpu_fence_count_emitted(struct amdgpu_ring *ring); 441unsigned amdgpu_fence_count_emitted(struct amdgpu_ring *ring);
442 442
443signed long amdgpu_fence_wait_any(struct amdgpu_device *adev, 443signed long amdgpu_fence_wait_multiple(struct amdgpu_device *adev,
444 struct amdgpu_fence **fences, 444 struct amdgpu_fence **array,
445 bool intr, long t); 445 uint32_t count,
446 bool wait_all,
447 bool intr,
448 signed long t);
446struct amdgpu_fence *amdgpu_fence_ref(struct amdgpu_fence *fence); 449struct amdgpu_fence *amdgpu_fence_ref(struct amdgpu_fence *fence);
447void amdgpu_fence_unref(struct amdgpu_fence **fence); 450void amdgpu_fence_unref(struct amdgpu_fence **fence);
448 451