diff options
author | Simon Glass <sjg@chromium.org> | 2013-05-07 06:11:52 +0000 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2013-05-14 15:37:25 -0400 |
commit | 61a439a873e8ae95c1af2e6f1b1085372c4cb326 (patch) | |
tree | 0200bddb11bdcc40c89c33cf99d9a6cf2f478a3b /include/image.h | |
parent | 859e92b775fd8ebcfacc591eaf621b677c95b6f7 (diff) | |
download | u-boot-imx-61a439a873e8ae95c1af2e6f1b1085372c4cb326.zip u-boot-imx-61a439a873e8ae95c1af2e6f1b1085372c4cb326.tar.gz u-boot-imx-61a439a873e8ae95c1af2e6f1b1085372c4cb326.tar.bz2 |
image: Export fit_check_ramdisk()
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 <sjg@chromium.org>
Reviewed-by: Marek Vasut <marex@denx.de>
Diffstat (limited to 'include/image.h')
-rw-r--r-- | include/image.h | 3 |
1 files changed, 3 insertions, 0 deletions
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) { |