summaryrefslogtreecommitdiff
path: root/tools/stm32image.c
diff options
context:
space:
mode:
authorPali Rohár <pali@kernel.org>2023-03-29 22:25:54 +0300
committerStefan Roese <sr@denx.de>2023-04-13 12:34:47 +0300
commit2972d7d62f8f177bf2186c7a38bdae53dff99a7a (patch)
treecef1ee44f02159c56c627358647cd3b61662772f /tools/stm32image.c
parent4548b37a29035c1d946e86513b70029cb4dc08b4 (diff)
downloadu-boot-2972d7d62f8f177bf2186c7a38bdae53dff99a7a.tar.xz
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/stm32image.c')
-rw-r--r--tools/stm32image.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/stm32image.c b/tools/stm32image.c
index 18357c0518..5c6991f35d 100644
--- a/tools/stm32image.c
+++ b/tools/stm32image.c
@@ -99,7 +99,7 @@ static int stm32image_verify_header(unsigned char *ptr, int image_size,
return 0;
}
-static void stm32image_print_header(const void *ptr)
+static void stm32image_print_header(const void *ptr, struct image_tool_params *params)
{
struct stm32_header *stm32hdr = (struct stm32_header *)ptr;