aboutsummaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/freedreno/freedreno_fence.c
diff options
context:
space:
mode:
authorRob Clark <[email protected]>2019-06-25 11:21:28 -0700
committerRob Clark <[email protected]>2019-06-26 08:43:02 -0700
commit2b10bb6e5ee967f0ee44559ae2cb92099a0fa372 (patch)
treee9f0649791131dbd4e0064ce41df8e4f273682ba /src/gallium/drivers/freedreno/freedreno_fence.c
parent5f809e270767851dc70cbfd63cb158e0ee46f29e (diff)
freedreno: drop unused arg from fd_batch_flush()
The `force` arg has been unused for a while.. but apparently I forgot to garbage collect it. Signed-off-by: Rob Clark <[email protected]>
Diffstat (limited to 'src/gallium/drivers/freedreno/freedreno_fence.c')
-rw-r--r--src/gallium/drivers/freedreno/freedreno_fence.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/freedreno/freedreno_fence.c b/src/gallium/drivers/freedreno/freedreno_fence.c
index 68bbb25ee64..940497bd495 100644
--- a/src/gallium/drivers/freedreno/freedreno_fence.c
+++ b/src/gallium/drivers/freedreno/freedreno_fence.c
@@ -48,7 +48,7 @@ struct pipe_fence_handle {
static void fence_flush(struct pipe_fence_handle *fence)
{
if (fence->batch)
- fd_batch_flush(fence->batch, true, true);
+ fd_batch_flush(fence->batch, true);
debug_assert(!fence->batch);
}