diff options
| author | Simon Glass <sjg@chromium.org> | 2013-05-07 06:11:51 +0000 | 
|---|---|---|
| committer | Tom Rini <trini@ti.com> | 2013-05-14 15:37:25 -0400 | 
| commit | 859e92b775fd8ebcfacc591eaf621b677c95b6f7 (patch) | |
| tree | f1ae2d4e34ed738a5cdac53fa3e21d3a5d998844 /include/image.h | |
| parent | 88f95bbadda89bfaf6a8e817bb66fd114afc1caf (diff) | |
| download | olio-uboot-2014.01-859e92b775fd8ebcfacc591eaf621b677c95b6f7.tar.xz olio-uboot-2014.01-859e92b775fd8ebcfacc591eaf621b677c95b6f7.zip | |
image: Move timestamp #ifdefs to header file
Rather than repeat the line
 #if defined(CONFIG_TIMESTAMP) || defined(CONFIG_CMD_DATE) || \
	defined(USE_HOSTCC)
everywhere, put this in a header file and #define IMAGE_ENABLE_TIMESTAMP
to either 1 or 0. Then we can use a plain if() in most code and avoid
the #ifdefs.
The compiler's dead code elimination ensures that the result is the same.
Signed-off-by: Simon Glass <sjg@chromium.org>
Acked-by: Marek Vasut <marex@denx.de>
Diffstat (limited to 'include/image.h')
| -rw-r--r-- | include/image.h | 8 | 
1 files changed, 8 insertions, 0 deletions
| diff --git a/include/image.h b/include/image.h index 4ad0e6b21..d2325dd39 100644 --- a/include/image.h +++ b/include/image.h @@ -333,6 +333,14 @@ int genimg_get_type_id(const char *name);  int genimg_get_comp_id(const char *name);  void genimg_print_size(uint32_t size); +#if defined(CONFIG_TIMESTAMP) || defined(CONFIG_CMD_DATE) || \ +	defined(USE_HOSTCC) +#define IMAGE_ENABLE_TIMESTAMP 1 +#else +#define IMAGE_ENABLE_TIMESTAMP 0 +#endif +void genimg_print_time(time_t timestamp); +  #ifndef USE_HOSTCC  /* Image format types, returned by _get_format() routine */  #define IMAGE_FORMAT_INVALID	0x00 |