diff options
author | Pali Rohár | 2023-03-29 21:25:54 +0200 |
---|---|---|
committer | Stefan Roese | 2023-04-13 11:34:47 +0200 |
commit | 2972d7d62f8f177bf2186c7a38bdae53dff99a7a (patch) | |
tree | cef1ee44f02159c56c627358647cd3b61662772f /tools/mtk_image.c | |
parent | 4548b37a29035c1d946e86513b70029cb4dc08b4 (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/mtk_image.c')
-rw-r--r-- | tools/mtk_image.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/mtk_image.c b/tools/mtk_image.c index 5ef9334163d..30f54c8e8d8 100644 --- a/tools/mtk_image.c +++ b/tools/mtk_image.c @@ -510,7 +510,7 @@ static int mtk_image_verify_header(unsigned char *ptr, int image_size, return -1; } -static void mtk_image_print_header(const void *ptr) +static void mtk_image_print_header(const void *ptr, struct image_tool_params *params) { struct legacy_img_hdr *hdr = (struct legacy_img_hdr *)ptr; union lk_hdr *lk = (union lk_hdr *)ptr; |