freedreno/cffdec: Remove dead code

pkt2 is already handled further down the if/else ladder.

Signed-off-by: Rob Clark <robdclark@chromium.org>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/19444>
This commit is contained in:
Rob Clark 2022-10-25 09:34:06 -07:00 committed by Marge Bot
parent 86e8b9339f
commit 00e2f9eff6
1 changed files with 0 additions and 6 deletions

View File

@ -2808,12 +2808,6 @@ dump_commands(uint32_t *dwords, uint32_t sizedwords, int level)
dump_registers(val, dwords+2, 1, level+2);
if (!quiet(3))
dump_hex(dwords, count, level+1);
} else if (pkt_is_type2(dwords[0])) {
printl(3, "t2");
printf("%sNOP\n", levels[level+1]);
count = 1;
if (!quiet(3))
dump_hex(dwords, count, level+1);
#endif
} else if (pkt_is_type3(dwords[0])) {
count = type3_pkt_size(dwords[0]) + 1;