summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/radeonsi
diff options
context:
space:
mode:
authorTimothy Arceri <[email protected]>2019-10-28 10:08:00 +1100
committerTimothy Arceri <[email protected]>2019-10-28 11:24:38 +0000
commitc976b427c4e376d93396325a4c1ca47349f618e8 (patch)
tree21197487010235ffb6064c5fea50fdb11207361d /src/gallium/drivers/radeonsi
parentd23d47c065502e6daaa1074f4e6457120dfa152b (diff)
util: remove LIST_DELINIT macro
Just use the inlined function directly. The macro was replaced with the function in ebe304fa540f. Reviewed-by: Eric Engestrom <[email protected]>
Diffstat (limited to 'src/gallium/drivers/radeonsi')
-rw-r--r--src/gallium/drivers/radeonsi/si_query.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/radeonsi/si_query.c b/src/gallium/drivers/radeonsi/si_query.c
index c4a2ee6f130..8776dde4521 100644
--- a/src/gallium/drivers/radeonsi/si_query.c
+++ b/src/gallium/drivers/radeonsi/si_query.c
@@ -1171,7 +1171,7 @@ bool si_query_hw_end(struct si_context *sctx,
si_query_hw_emit_stop(sctx, query);
if (!(query->flags & SI_QUERY_HW_FLAG_NO_START)) {
- LIST_DELINIT(&query->b.active_list);
+ list_delinit(&query->b.active_list);
sctx->num_cs_dw_queries_suspend -= query->b.num_cs_dw_suspend;
}