From 1572e8f3e136affb429e34ec2e8e10e206e0f3cd Mon Sep 17 00:00:00 2001 From: Andreas Baierl Date: Thu, 6 Feb 2020 11:41:35 +0100 Subject: [PATCH] lima/parser: Change value name in RSW parser Second value of SHADER_ADDRESS is the length of the first instruction in the shader, so give it a better name. Reviewed-by: Vasily Khoruzhick Tested-by: Marge Bot Part-of: --- src/gallium/drivers/lima/lima_parser.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gallium/drivers/lima/lima_parser.c b/src/gallium/drivers/lima/lima_parser.c index ae1764723eb..e08a4013672 100644 --- a/src/gallium/drivers/lima/lima_parser.c +++ b/src/gallium/drivers/lima/lima_parser.c @@ -535,7 +535,7 @@ parse_rsw(FILE *fp, uint32_t *value, int i, uint32_t *helper) fprintf(fp, ", UNKNOWN\n"); break; case 9: /* SHADER ADDRESS */ - fprintf(fp, ": fs shader @ 0x%08x, ((uint32_t *)ctx->fs->bo->map)[0] & 0x1f: 0x%08x */\n", + fprintf(fp, ": fs shader @ 0x%08x, first instr length %d */\n", *value & 0xffffffe0, *value & 0x0000001f); break; case 10: /* VARYING TYPES */ -- 2.30.2