diff options
| author | Pali Rohár <[email protected]> | 2023-03-29 21:25:54 +0200 |
|---|---|---|
| committer | Stefan Roese <[email protected]> | 2023-04-13 11:34:47 +0200 |
| commit | 2972d7d62f8f177bf2186c7a38bdae53dff99a7a (patch) | |
| tree | cef1ee44f02159c56c627358647cd3b61662772f /tools/zynqmpimage.h | |
| 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 <[email protected]>
Reviewed-by: Simon Glass <[email protected]>
Diffstat (limited to 'tools/zynqmpimage.h')
| -rw-r--r-- | tools/zynqmpimage.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/zynqmpimage.h b/tools/zynqmpimage.h index a1db819aa36..9d526a17cdd 100644 --- a/tools/zynqmpimage.h +++ b/tools/zynqmpimage.h @@ -133,6 +133,6 @@ struct zynqmp_header { }; void zynqmpimage_default_header(struct zynqmp_header *ptr); -void zynqmpimage_print_header(const void *ptr); +void zynqmpimage_print_header(const void *ptr, struct image_tool_params *params); #endif /* _ZYNQMPIMAGE_H_ */ |
