projects
/
platform
/
kernel
/
linux-rpi3.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b9141cd
)
drm/amdgpu: no need with INT for fence polling
author
Monk Liu
<Monk.Liu@amd.com>
Mon, 4 Dec 2017 12:46:17 +0000
(20:46 +0800)
committer
Alex Deucher
<alexander.deucher@amd.com>
Tue, 12 Dec 2017 19:50:00 +0000
(14:50 -0500)
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>
drivers/gpu/drm/amd/amdgpu/amdgpu_fence.c
patch
|
blob
|
history
diff --git
a/drivers/gpu/drm/amd/amdgpu/amdgpu_fence.c
b/drivers/gpu/drm/amd/amdgpu/amdgpu_fence.c
index
1469963
..
7cb71a8
100644
(file)
--- 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;