]> git.sur5r.net Git - u-boot/blobdiff - tools/fit_common.h
Merge tag 'arc-updates-for-2018.07-rc1' of git://git.denx.de/u-boot-arc
[u-boot] / tools / fit_common.h
index adcee6df64580cfa6f0af91b7804258ff449232a..71e792e3c489d9e48d8eaabb943f58c0aa08ef13 100644 (file)
@@ -1,7 +1,6 @@
+/* SPDX-License-Identifier: GPL-2.0+ */
 /*
  * (C) Copyright 2014
- *
- * SPDX-License-Identifier:    GPL-2.0+
  */
 
 #ifndef _FIT_COMMON_H_
@@ -21,12 +20,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_ */