diff options
author | Pali Rohár <pali@kernel.org> | 2023-03-29 21:25:54 +0200 |
---|---|---|
committer | Stefan Roese <sr@denx.de> | 2023-04-13 11:34:47 +0200 |
commit | 2972d7d62f8f177bf2186c7a38bdae53dff99a7a (patch) | |
tree | cef1ee44f02159c56c627358647cd3b61662772f /tools/imagetool.c | |
parent | 4548b37a29035c1d946e86513b70029cb4dc08b4 (diff) | |
download | u-boot-2972d7d62f8f177bf2186c7a38bdae53dff99a7a.zip u-boot-2972d7d62f8f177bf2186c7a38bdae53dff99a7a.tar.gz u-boot-2972d7d62f8f177bf2186c7a38bdae53dff99a7a.tar.bz2 |
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/imagetool.c')
-rw-r--r-- | tools/imagetool.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/imagetool.c b/tools/imagetool.c index 87eee4a..b293211 100644 --- a/tools/imagetool.c +++ b/tools/imagetool.c @@ -66,7 +66,7 @@ int imagetool_verify_print_header( */ if ((*curr)->print_header) { if (!params->quiet) - (*curr)->print_header(ptr); + (*curr)->print_header(ptr, params); } else { fprintf(stderr, "%s: print_header undefined for %s\n", @@ -103,7 +103,7 @@ static int imagetool_verify_print_header_by_type( */ if (tparams->print_header) { if (!params->quiet) - tparams->print_header(ptr); + tparams->print_header(ptr, params); } else { fprintf(stderr, "%s: print_header undefined for %s\n", |