From b40675947996faea8c4455dc44492d003bc9f49f Mon Sep 17 00:00:00 2001 From: Rohan Garg Date: Thu, 25 Apr 2024 15:20:07 +0200 Subject: [PATCH] anv: formatting fix when printing pipe controls Fixes: abc4111 ('anv: pass steam output as argument for anv_dump_pipe_bits') Signed-off-by: Rohan Garg Reviewed-by: Lionel Landwerlin Part-of: --- src/intel/vulkan/anv_util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/intel/vulkan/anv_util.c b/src/intel/vulkan/anv_util.c index 4394794603b..15a160b6194 100644 --- a/src/intel/vulkan/anv_util.c +++ b/src/intel/vulkan/anv_util.c @@ -89,7 +89,7 @@ anv_dump_pipe_bits(enum anv_pipe_bits bits, FILE *f) bits & ANV_PIPE_END_OF_PIPE_SYNC_BIT) fputs("+cs_stall ", f); if (bits & ANV_PIPE_UNTYPED_DATAPORT_CACHE_FLUSH_BIT) - fputs("+utdp_flush", f); + fputs("+utdp_flush ", f); if (bits & ANV_PIPE_CCS_CACHE_FLUSH_BIT) fputs("+ccs_flush ", f); }