One we split out the FIT code from image.c we will need this function.
Export it in the header.

Signed-off-by: Simon Glass <s...@chromium.org>
Reviewed-by: Marek Vasut <ma...@denx.de>
---
Changes in v3: None
Changes in v2: None

 common/image.c  | 9 ++-------
 include/image.h | 3 +++
 2 files changed, 5 insertions(+), 7 deletions(-)

diff --git a/common/image.c b/common/image.c
index b415c4e..7b48564 100644
--- a/common/image.c
+++ b/common/image.c
@@ -49,14 +49,9 @@
 #include <fdt_support.h>
 #endif
 
-#if defined(CONFIG_FIT)
 #include <u-boot/md5.h>
 #include <sha1.h>
 
-static int fit_check_ramdisk(const void *fit, int os_noffset,
-               uint8_t arch, int verify);
-#endif
-
 #ifdef CONFIG_CMD_BDI
 extern int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const 
argv[]);
 #endif
@@ -3364,8 +3359,8 @@ void fit_conf_print(const void *fit, int noffset, const 
char *p)
  *     0, on failure
  */
 #ifndef USE_HOSTCC
-static int fit_check_ramdisk(const void *fit, int rd_noffset, uint8_t arch,
-                               int verify)
+int fit_check_ramdisk(const void *fit, int rd_noffset, uint8_t arch,
+                       int verify)
 {
        fit_image_print(fit, rd_noffset, "   ");
 
diff --git a/include/image.h b/include/image.h
index d2325dd..7149cba 100644
--- a/include/image.h
+++ b/include/image.h
@@ -633,6 +633,9 @@ int fit_conf_get_fdt_node(const void *fit, int noffset);
 
 void fit_conf_print(const void *fit, int noffset, const char *p);
 
+int fit_check_ramdisk(const void *fit, int os_noffset,
+               uint8_t arch, int verify);
+
 #ifndef USE_HOSTCC
 static inline int fit_image_check_target_arch(const void *fdt, int node)
 {
-- 
1.8.2.1

_______________________________________________
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot

Reply via email to