X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=tools%2Ffit_common.h;h=b8d8438717fc06992530af7e77c6cae30a12643a;hb=f36bbcceba2891bec17add339c7ff3241c3f6d94;hp=adcee6df64580cfa6f0af91b7804258ff449232a;hpb=ef0af64b1c45b8ee28db12c16c4ee881ee328e44;p=oweals%2Fu-boot.git diff --git a/tools/fit_common.h b/tools/fit_common.h index adcee6df64..b8d8438717 100644 --- a/tools/fit_common.h +++ b/tools/fit_common.h @@ -21,12 +21,13 @@ int fit_check_image_types(uint8_t type); * * @cmdname: Tool name (for displaying with error messages) * @fname: Filename containing FDT + * @size_inc: Amount to increase size by (0 = leave it alone) * @blobp: Returns pointer to FDT blob * @sbuf: File status information is stored here * @delete_on_error: true to delete the file if we get an error * @return 0 if OK, -1 on error. */ -int mmap_fdt(const char *cmdname, const char *fname, void **blobp, - struct stat *sbuf, bool delete_on_error); +int mmap_fdt(const char *cmdname, const char *fname, size_t size_inc, + void **blobp, struct stat *sbuf, bool delete_on_error); #endif /* _FIT_COMMON_H_ */