pan/decode: Fix min/max_tile_coord mixup
authorAlyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
Mon, 11 May 2020 22:54:05 +0000 (18:54 -0400)
committerMarge Bot <eric+marge@anholt.net>
Tue, 19 May 2020 16:24:49 +0000 (16:24 +0000)
Signed-off-by: Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5099>

src/panfrost/pandecode/decode.c

index 471e7f01ee021abfc7cbdb80eada3fbda4605f32..dc826687174575f50dd7ef792a84d42e4673461c 100644 (file)
@@ -3074,7 +3074,7 @@ pandecode_fragment_job(const struct pandecode_mapped_memory *mem,
         if ((s->min_tile_coord | s->max_tile_coord) & ~(MALI_X_COORD_MASK | MALI_Y_COORD_MASK)) {
                 pandecode_msg("XXX: unexpected tile coordinate bits\n");
                 pandecode_prop("min_tile_coord = 0x%X\n", s->min_tile_coord);
-                pandecode_prop("max_tile_coord = 0x%X\n", s->min_tile_coord);
+                pandecode_prop("max_tile_coord = 0x%X\n", s->max_tile_coord);
         }
 
         /* Extract tile coordinates */