From 7fbded8b5821a47c26245b181446f972f920a96e Mon Sep 17 00:00:00 2001 From: Alyssa Rosenzweig Date: Wed, 26 Aug 2020 17:14:57 -0400 Subject: [PATCH] pan/decode: Drop prefix braces Signed-off-by: Alyssa Rosenzweig Part-of: --- src/panfrost/lib/decode.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/panfrost/lib/decode.c b/src/panfrost/lib/decode.c index 58b02f16f52..6b903241b1d 100644 --- a/src/panfrost/lib/decode.c +++ b/src/panfrost/lib/decode.c @@ -1222,9 +1222,6 @@ bits(u32 word, u32 lo, u32 hi) static void pandecode_vertex_tiler_prefix(struct mali_vertex_tiler_prefix *p, int job_no, bool graphics) { - pandecode_log(".prefix = {\n"); - pandecode_indent++; - /* Decode invocation_count. See the comment before the definition of * invocation_count for an explanation. */ @@ -1286,9 +1283,6 @@ pandecode_vertex_tiler_prefix(struct mali_vertex_tiler_prefix *p, int job_no, bo pandecode_validate_buffer(primitive.indices, primitive.index_count * size); } else if (primitive.index_type) pandecode_msg("XXX: unexpected index size\n"); - - pandecode_indent--; - pandecode_log("},\n"); } static void -- 2.30.2