summaryrefslogtreecommitdiff
path: root/tools/sunxi_toc0.c
diff options
context:
space:
mode:
authorPali Rohár <pali@kernel.org>2023-03-29 21:25:54 +0200
committerStefan Roese <sr@denx.de>2023-04-13 11:34:47 +0200
commit2972d7d62f8f177bf2186c7a38bdae53dff99a7a (patch)
treecef1ee44f02159c56c627358647cd3b61662772f /tools/sunxi_toc0.c
parent4548b37a29035c1d946e86513b70029cb4dc08b4 (diff)
tools: imagetool: Extend print_header() by params argument
This allows image type print_header() callback to access struct image_tool_params *params. Signed-off-by: Pali Rohár <pali@kernel.org> Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools/sunxi_toc0.c')
-rw-r--r--tools/sunxi_toc0.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/sunxi_toc0.c b/tools/sunxi_toc0.c
index 7a8d74bb8e4..292649fe90f 100644
--- a/tools/sunxi_toc0.c
+++ b/tools/sunxi_toc0.c
@@ -757,7 +757,7 @@ static const char *toc0_item_name(uint32_t name)
return "(unknown)";
}
-static void toc0_print_header(const void *buf)
+static void toc0_print_header(const void *buf, struct image_tool_params *params)
{
const struct toc0_main_info *main_info = buf;
const struct toc0_item_info *item_info = (void *)(main_info + 1);