From 59824c1ecb2c5e6197f795f38e3617820e628876 Mon Sep 17 00:00:00 2001 From: Alyssa Rosenzweig Date: Wed, 23 Nov 2022 20:35:26 -0500 Subject: [PATCH] asahi: Fix incorrect debug string Signed-off-by: Alyssa Rosenzweig Part-of: --- src/gallium/drivers/asahi/agx_pipe.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gallium/drivers/asahi/agx_pipe.c b/src/gallium/drivers/asahi/agx_pipe.c index 27eb39584c5..f798efd8812 100644 --- a/src/gallium/drivers/asahi/agx_pipe.c +++ b/src/gallium/drivers/asahi/agx_pipe.c @@ -604,7 +604,7 @@ agx_prepare_for_map(struct agx_context *ctx, agx_flush_writer(ctx, rsrc, "Unsynchronized transfer"); if (usage & PIPE_MAP_WRITE) - agx_flush_readers(ctx, rsrc, "Unsynchronized read"); + agx_flush_readers(ctx, rsrc, "Unsynchronized write"); }