diff options
author | Alyssa Rosenzweig <[email protected]> | 2019-08-09 14:56:30 -0700 |
---|---|---|
committer | Alyssa Rosenzweig <[email protected]> | 2019-08-14 16:42:39 -0700 |
commit | f5cc5ef40444fbfa40e2d95e9335ee7e33bd1a9b (patch) | |
tree | e5279fa915fbe456df239a9fb084448167692063 /src/panfrost/pandecode | |
parent | b78e04c17b345d79439c27ef7c76eb21410f2ff2 (diff) |
pan/decode: Fix duplicate heap_end property
This was supposed to read heap_start. It's the same value but still,
better get this right.
Signed-off-by: Alyssa Rosenzweig <[email protected]>
Diffstat (limited to 'src/panfrost/pandecode')
-rw-r--r-- | src/panfrost/pandecode/decode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/panfrost/pandecode/decode.c b/src/panfrost/pandecode/decode.c index 75fa1971237..71eb2e972e2 100644 --- a/src/panfrost/pandecode/decode.c +++ b/src/panfrost/pandecode/decode.c @@ -479,7 +479,7 @@ pandecode_midgard_tiler_descriptor(const struct midgard_tiler_descriptor *t) if (t->heap_start == t->heap_end) { /* Print identically to show symmetry for empty tiler heaps */ - MEMORY_PROP(t, heap_start); + MEMORY_PROP(t, heap_end); } else { /* Points to the end of a buffer */ char *a = pointer_as_memory_reference(t->heap_end - 1); |