diff options
-rw-r--r-- | tools/zynqmpimage.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/tools/zynqmpimage.c b/tools/zynqmpimage.c index bb54f41a15..05af1e81a2 100644 --- a/tools/zynqmpimage.c +++ b/tools/zynqmpimage.c @@ -262,9 +262,7 @@ void zynqmpimage_print_header(const void *ptr, struct image_tool_params *params) for (i = 0; i < le32_to_cpu(iht->nr_parts); i++) { next = le32_to_cpu(ph->next_partition_offset) * 4; - /* Partition 0 is the base image itself */ - if (i) - print_partition(ptr, ph); + print_partition(ptr, ph); ph = (void *)ptr + next; } |