rockchip: mkimage: rkspi: include the header sector in the SPI size calculation
[oweals/u-boot.git] / tools / rkspi.c
index d2d3fdda424eadc545aac09253d65ae574268ec7..0a152293aa50ce484d0353855efb22ebd8d030c3 100644 (file)
@@ -79,12 +79,12 @@ static int rkspi_vrec_header(struct image_tool_params *params,
 
        rkcommon_vrec_header(params, tparams);
 
-       pad_size = (rkcommon_get_spl_size(params) + 0x7ff) / 0x800 * 0x800;
+       pad_size = ROUND(rkcommon_get_spl_size(params), 0x800);
        params->orig_file_size = pad_size;
 
        /* We will double the image size due to the SPI format */
-       pad_size *= 2;
        pad_size += RK_SPL_HDR_START;
+       pad_size *= 2;
        debug("pad_size %x\n", pad_size);
 
        return pad_size - params->file_size - tparams->header_size;