diff options
author | Jeroen Hofstee <jeroen@myspectrum.nl> | 2014-10-08 22:58:07 +0200 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-10-25 15:27:37 -0400 |
commit | ce048224371480ecf4fb84c36859ee8e542af0b6 (patch) | |
tree | 64a38fa5d3024cdf0e53d2b70b37ebf9804604fc /include/spl.h | |
parent | aeb805558440524e2e80d00e08ac98157a5922b5 (diff) |
spl: add prototype for jump_to_image_no_args
Signed-off-by: Jeroen Hofstee <jeroen@myspectrum.nl>
Diffstat (limited to 'include/spl.h')
-rw-r--r-- | include/spl.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/spl.h b/include/spl.h index a7e41da7fd4..cee251faf7d 100644 --- a/include/spl.h +++ b/include/spl.h @@ -72,6 +72,8 @@ void spl_sata_load_image(void); int spl_load_image_fat(block_dev_desc_t *block_dev, int partition, const char *filename); int spl_load_image_fat_os(block_dev_desc_t *block_dev, int partition); +void __noreturn jump_to_image_no_args(struct spl_image_info *spl_image); + #ifdef CONFIG_SPL_BOARD_INIT void spl_board_init(void); #endif |