From 255de06c5990797832678d7af01876a1afca5b50 Mon Sep 17 00:00:00 2001 From: Timothy Arceri Date: Mon, 28 Oct 2019 09:58:31 +1100 Subject: util: remove LIST_ADDTAIL macro Just use the inlined function directly. The macro was replaced with the function in ebe304fa540f. Reviewed-by: Eric Engestrom --- src/gallium/drivers/radeonsi/gfx10_query.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/gallium/drivers/radeonsi/gfx10_query.c') diff --git a/src/gallium/drivers/radeonsi/gfx10_query.c b/src/gallium/drivers/radeonsi/gfx10_query.c index f87420e36bf..0b76da8d95b 100644 --- a/src/gallium/drivers/radeonsi/gfx10_query.c +++ b/src/gallium/drivers/radeonsi/gfx10_query.c @@ -170,7 +170,7 @@ static bool gfx10_alloc_query_buffer(struct si_context *sctx) results[32 * i + 16] = 0; } - LIST_ADDTAIL(&qbuf->list, &sctx->shader_query_buffers); + list_addtail(&qbuf->list, &sctx->shader_query_buffers); qbuf->head = 0; qbuf->refcount = sctx->num_active_shader_queries; -- cgit v1.2.3