Module: Mesa Branch: main Commit: fb36995fe4df802bd1141ab0d8bd6bb8831e2deb URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=fb36995fe4df802bd1141ab0d8bd6bb8831e2deb
Author: Alyssa Rosenzweig <[email protected]> Date: Tue Aug 1 10:40:23 2023 -0400 pan/decode: Drop unused debug function Signed-off-by: Alyssa Rosenzweig <[email protected]> Reviewed-by: Italo Nicola <[email protected]> Acked-by: Faith Ekstrand <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/24428> --- src/panfrost/lib/genxml/decode_csf.c | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/panfrost/lib/genxml/decode_csf.c b/src/panfrost/lib/genxml/decode_csf.c index 99d0f955761..21be3ade8ef 100644 --- a/src/panfrost/lib/genxml/decode_csf.c +++ b/src/panfrost/lib/genxml/decode_csf.c @@ -54,13 +54,6 @@ struct queue_ctx { unsigned gpu_id; }; -static void -dump_cshwif_registers(struct queue_ctx *ctx) -{ - for (unsigned i = 0; i < ctx->nr_regs; ++i) - fprintf(pandecode_dump_stream, "r%u: %X\n", i, ctx->regs[i]); -} - static uint32_t cs_get_u32(struct queue_ctx *ctx, uint8_t reg) {
