From: Alyssa Rosenzweig Date: Tue, 20 Aug 2019 20:21:28 +0000 (-0700) Subject: panfrost: Don't trip the prefix magic field X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c0642ebca1a8aa7fa34eb5c5205babf9e9a7b6a2;p=mesa.git panfrost: Don't trip the prefix magic field What *is* this? Signed-off-by: Alyssa Rosenzweig --- diff --git a/src/panfrost/pandecode/decode.c b/src/panfrost/pandecode/decode.c index fe0c33048c3..8fc18b2ee74 100644 --- a/src/panfrost/pandecode/decode.c +++ b/src/panfrost/pandecode/decode.c @@ -1532,10 +1532,8 @@ pandecode_vertex_tiler_prefix(struct mali_vertex_tiler_prefix *p, int job_no, bo if (p->offset_bias_correction) pandecode_prop("offset_bias_correction = %d", p->offset_bias_correction); - if (p->zero1) { - pandecode_msg("XXX: payload zero tripped\n"); - pandecode_prop("zero1 = 0x%" PRIx32, p->zero1); - } + /* TODO: Figure out what this is. It's not zero */ + pandecode_prop("zero1 = 0x%" PRIx32, p->zero1); pandecode_indent--; pandecode_log("},\n");