X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=tools%2Fsocfpgaimage.c;h=8fe91fe80ee9ac9ab5c2c0f7af25705f212bd486;hb=dc9cdf859e11de775e75cc233b09d6b6d257a818;hp=652ae45f812db9b29d6b31dc7dce81840358b068;hpb=a93648d197df48fa46dd55f925ff70468bd81c71;p=u-boot diff --git a/tools/socfpgaimage.c b/tools/socfpgaimage.c index 652ae45f81..8fe91fe80e 100644 --- a/tools/socfpgaimage.c +++ b/tools/socfpgaimage.c @@ -33,6 +33,8 @@ #include "pbl_crc32.h" #include "imagetool.h" +#include "mkimage.h" + #include #define HEADER_OFFSET 0x40 @@ -133,12 +135,12 @@ static int verify_buffer(const uint8_t *buf) len = verify_header(buf + HEADER_OFFSET); if (len < 0) { - fprintf(stderr, "Invalid header\n"); + debug("Invalid header\n"); return -1; } if (len < HEADER_OFFSET || len > PADDED_SIZE) { - fprintf(stderr, "Invalid header length (%i)\n", len); + debug("Invalid header length (%i)\n", len); return -1; }