diff options
author | Alex Kiernan | 2018-06-20 20:10:51 +0000 |
---|---|---|
committer | Tom Rini | 2018-07-10 16:56:00 -0400 |
commit | 87925df2b3f8d308addc5c0fe5a22ae9712ca5ec (patch) | |
tree | ed865fbf644bf7f167c6227d19430e584f17156e /tools/imagetool.h | |
parent | 67a2616af18bbb38905b90ed1c6b66659671e1da (diff) |
mkimage: Refactor imagetool_get_source_date to take command name
So we can use imagetool_get_source_date() from callers who do not have
the image tool params struct, just pass in the command name for the error
message.
Signed-off-by: Alex Kiernan <alex.kiernan@gmail.com>
Reviewed-by: Simon Glass <sjg@chromum.org>
Diffstat (limited to 'tools/imagetool.h')
-rw-r--r-- | tools/imagetool.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/imagetool.h b/tools/imagetool.h index d191b9cfe70..63c08ebc09c 100644 --- a/tools/imagetool.h +++ b/tools/imagetool.h @@ -216,12 +216,12 @@ int imagetool_get_filesize(struct image_tool_params *params, const char *fname); * an error message if SOURCE_DATE_EPOCH contains an invalid value and returns * 0. * - * @params: mkimage parameters + * @cmdname: command name * @fallback: timestamp to use if SOURCE_DATE_EPOCH isn't set * @return timestamp based on SOURCE_DATE_EPOCH */ time_t imagetool_get_source_date( - struct image_tool_params *params, + const char *cmdname, time_t fallback); /* |