lima/streamparser: Fix typo in vs semaphore parser

Reviewed-by: Vasily Khoruzhick <anarsoul@gmail.com>
Signed-off-by: Andreas Baierl <ichgeh@imkreisrum.de>
This commit is contained in:
Andreas Baierl 2019-11-18 09:46:21 +01:00 committed by Vasily Khoruzhick
parent 9af22ccddc
commit 804c295039

View file

@ -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");
}