diff options
author | Monk Liu <Monk.Liu@amd.com> | 2017-12-04 20:46:17 +0800 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2017-12-12 14:50:00 -0500 |
commit | d118a62153000e6141872b99aea8498568b0d361 (patch) | |
tree | b8575ca2bfa639e3eb82b0ea6c210df9a2398a39 /drivers/gpu/drm/amd/amdgpu/amdgpu_fence.c | |
parent | b9141cd3930e390f156739829ca9589fda7926e4 (diff) | |
download | lwn-d118a62153000e6141872b99aea8498568b0d361.tar.gz lwn-d118a62153000e6141872b99aea8498568b0d361.zip |
drm/amdgpu: no need with INT for fence polling
We are polling so no need for INT.
Signed-off-by: Monk Liu <Monk.Liu@amd.com>
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_fence.c')
-rw-r--r-- | drivers/gpu/drm/amd/amdgpu/amdgpu_fence.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_fence.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_fence.c index 14699637913a..7cb71a8e21df 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_fence.c +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_fence.c @@ -187,7 +187,7 @@ int amdgpu_fence_emit_polling(struct amdgpu_ring *ring, uint32_t *s) seq = ++ring->fence_drv.sync_seq; amdgpu_ring_emit_fence(ring, ring->fence_drv.gpu_addr, - seq, AMDGPU_FENCE_FLAG_INT); + seq, 0); *s = seq; |