aboutsummaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/lima/lima_parser.c
diff options
context:
space:
mode:
authorAndreas Baierl <[email protected]>2019-11-18 09:46:21 +0100
committerVasily Khoruzhick <[email protected]>2019-11-20 19:24:12 +0000
commit804c295039b30f294ad62599352b81b40b009c6a (patch)
tree566120716fa088cf3f22406b1e0448e1a2341398 /src/gallium/drivers/lima/lima_parser.c
parent9af22ccddcd1a983df5e0c6732a4e8f5ebf4d9cf (diff)
lima/streamparser: Fix typo in vs semaphore parser
Reviewed-by: Vasily Khoruzhick <[email protected]> Signed-off-by: Andreas Baierl <[email protected]>
Diffstat (limited to 'src/gallium/drivers/lima/lima_parser.c')
-rw-r--r--src/gallium/drivers/lima/lima_parser.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/lima/lima_parser.c b/src/gallium/drivers/lima/lima_parser.c
index 64b99664f5a..90d98210ad4 100644
--- a/src/gallium/drivers/lima/lima_parser.c
+++ b/src/gallium/drivers/lima/lima_parser.c
@@ -102,7 +102,7 @@ parse_vs_semaphore(FILE *fp, uint32_t *value1, uint32_t *value2)
else if (*value1 == 0x00000000)
fprintf(fp, "\t/* SEMAPHORE_END: index_draw disabled */\n");
else if (*value1 == 0x00018000)
- fprintf(fp, "\t/* SEMAPHORE_END: index_draw disabled */\n");
+ fprintf(fp, "\t/* SEMAPHORE_END: index_draw enabled */\n");
else
fprintf(fp, "\t/* SEMAPHORE - cmd unknown! */\n");
}