From 52d6b4d6c0fa480ead93786851349dbd0a54d394 Mon Sep 17 00:00:00 2001 From: Alyssa Rosenzweig Date: Mon, 11 May 2020 18:54:05 -0400 Subject: [PATCH] pan/decode: Fix min/max_tile_coord mixup Signed-off-by: Alyssa Rosenzweig Part-of: --- src/panfrost/pandecode/decode.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/panfrost/pandecode/decode.c b/src/panfrost/pandecode/decode.c index 471e7f01ee0..dc826687174 100644 --- a/src/panfrost/pandecode/decode.c +++ b/src/panfrost/pandecode/decode.c @@ -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 */ -- 2.30.2