mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-09 03:21:51 +00:00
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>
This commit is contained in:
parent
4548b37a29
commit
2972d7d62f
30 changed files with 41 additions and 29 deletions
|
@ -813,7 +813,7 @@ static int imximage_verify_header(unsigned char *ptr, int image_size,
|
|||
return 0;
|
||||
}
|
||||
|
||||
static void imximage_print_header(const void *ptr)
|
||||
static void imximage_print_header(const void *ptr, struct image_tool_params *params)
|
||||
{
|
||||
struct imx_header *imx_hdr = (struct imx_header *) ptr;
|
||||
uint32_t version = detect_imximage_version(imx_hdr);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue