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/sunxi_egon.c | |
parent | 4548b37a29035c1d946e86513b70029cb4dc08b4 (diff) | |
download | u-boot-2972d7d62f8f177bf2186c7a38bdae53dff99a7a.tar.gz u-boot-2972d7d62f8f177bf2186c7a38bdae53dff99a7a.tar.bz2 u-boot-2972d7d62f8f177bf2186c7a38bdae53dff99a7a.zip |
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_egon.c')
-rw-r--r-- | tools/sunxi_egon.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/sunxi_egon.c b/tools/sunxi_egon.c index d45b6f5e43..a514427809 100644 --- a/tools/sunxi_egon.c +++ b/tools/sunxi_egon.c @@ -82,7 +82,7 @@ static int egon_verify_header(unsigned char *ptr, int image_size, return EXIT_SUCCESS; } -static void egon_print_header(const void *buf) +static void egon_print_header(const void *buf, struct image_tool_params *params) { const struct boot_file_head *header = buf; |