From: Alyssa Rosenzweig Date: Mon, 11 May 2020 22:54:05 +0000 (-0400) Subject: pan/decode: Fix min/max_tile_coord mixup X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=52d6b4d6c0fa480ead93786851349dbd0a54d394;p=mesa.git pan/decode: Fix min/max_tile_coord mixup Signed-off-by: Alyssa Rosenzweig Part-of: --- 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 */