X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=tools%2Fsocfpgaimage.c;h=6dfd64e31dd5487eea58d8077f42ee38baa363e8;hb=02c770b4e416e81429e9809b16d2656141a3e61c;hp=8fa098338b24a20924c2af6206cce1a26169ff7f;hpb=a4ef0657e3075d0f951d78cc1398cb7e05af648a;p=oweals%2Fu-boot.git diff --git a/tools/socfpgaimage.c b/tools/socfpgaimage.c index 8fa098338b..6dfd64e31d 100644 --- a/tools/socfpgaimage.c +++ b/tools/socfpgaimage.c @@ -203,7 +203,7 @@ static int sfp_sign_buffer(uint8_t *buf, uint8_t ver, uint8_t flags, uint32_t calc_crc; /* Align the length up */ - len = (len + 3) & ~3; + len = ALIGN(len, 4); /* Build header, adding 4 bytes to length to hold the CRC32. */ sfp_build_header(buf + HEADER_OFFSET, ver, flags, len + 4);