mirror of
https://xff.cz/git/u-boot/
synced 2025-09-01 08:42:12 +02:00
image: Remove remaining #ifdefs in image-fit.c
There are only two left. One is unnecessary and the other can be moved to the header file. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
@@ -296,12 +296,7 @@ void image_print_contents(const void *ptr)
|
||||
const image_header_t *hdr = (const image_header_t *)ptr;
|
||||
const char *p;
|
||||
|
||||
#ifdef USE_HOSTCC
|
||||
p = "";
|
||||
#else
|
||||
p = " ";
|
||||
#endif
|
||||
|
||||
p = IMAGE_INDENT_STRING;
|
||||
printf("%sImage Name: %.*s\n", p, IH_NMLEN, image_get_name(hdr));
|
||||
if (IMAGE_ENABLE_TIMESTAMP) {
|
||||
printf("%sCreated: ", p);
|
||||
|
Reference in New Issue
Block a user