nouveau/mme: Print ip in mme_tu104_dump

This matches mme_tu104_print

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/33560>
This commit is contained in:
Mel Henning 2025-02-10 14:19:09 -05:00 committed by Marge Bot
parent 0ff66fe1be
commit 8621d036c1

View file

@ -561,6 +561,7 @@ mme_tu104_dump(FILE *fp, uint32_t *encoded, size_t encoded_size)
for (uint32_t i = 0; i < inst_count; i++) {
struct mme_tu104_inst inst;
mme_tu104_decode(&inst, &encoded[i * 3], 1);
fprintf(fp, "%u:\n", i);
mme_tu104_print_inst(fp, 1, &inst);
}
}