From 38ae08856546ce1f23f4ab100a74c4a57728c114 Mon Sep 17 00:00:00 2001 From: Alyssa Rosenzweig Date: Wed, 26 Aug 2020 16:44:51 -0400 Subject: [PATCH] pan/decode: Drop scratchpad size dump It fails if the scratchpad isn't actually mapped from pandecode's perspective, and isn't useful information to us at this point. Signed-off-by: Alyssa Rosenzweig Part-of: --- src/panfrost/lib/decode.c | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/panfrost/lib/decode.c b/src/panfrost/lib/decode.c index f3705094f2e..e046361685c 100644 --- a/src/panfrost/lib/decode.c +++ b/src/panfrost/lib/decode.c @@ -487,14 +487,6 @@ pandecode_shared_memory(const struct mali_shared_memory *desc, bool is_compute) MEMORY_PROP(desc, scratchpad); MEMORY_PROP(desc, shared_memory); MEMORY_PROP(desc, unknown1); - - if (desc->scratchpad) { - struct pandecode_mapped_memory *smem = - pandecode_find_mapped_gpu_mem_containing(desc->scratchpad); - - pandecode_msg("scratchpad size %u\n", smem->length); - } - } static struct pandecode_fbd -- 2.30.2