From: Alyssa Rosenzweig Date: Fri, 28 Feb 2020 12:25:07 +0000 (-0500) Subject: pan/decode: Fix tiler weights printing X-Git-Tag: upstream/20.1.8~2974 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=acd140c2e20dfe9f18b7b442a7af79e0f221cb57;p=platform%2Fupstream%2Fmesa.git pan/decode: Fix tiler weights printing Theoretical - still always zero. Signed-off-by: Alyssa Rosenzweig Part-of: --- diff --git a/src/panfrost/pandecode/decode.c b/src/panfrost/pandecode/decode.c index b84a647..e5b7769 100644 --- a/src/panfrost/pandecode/decode.c +++ b/src/panfrost/pandecode/decode.c @@ -613,10 +613,10 @@ pandecode_midgard_tiler_descriptor( } if (nonzero_weights) { - pandecode_log(".weights = {"); + pandecode_log(".weights = { "); for (unsigned w = 0; w < ARRAY_SIZE(t->weights); ++w) { - pandecode_log("%d, ", t->weights[w]); + pandecode_log_cont("%d, ", t->weights[w]); } pandecode_log("},");