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:
@@ -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",
|
||||
|
||||
Reference in New Issue
Block a user