diff options
author | Jeroen Hofstee <jeroen@myspectrum.nl> | 2014-10-08 22:58:01 +0200 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-10-25 15:27:36 -0400 |
commit | 6f38477d3ad4cbe7d9efa9344dec805144828b2e (patch) | |
tree | 5017593a248c14fdae6d3dd815d3d24003c2bbc9 /include/elf.h | |
parent | f1bd871ad1583a4b5db35b7cc9d1a66c7b88b6e6 (diff) | |
download | u-boot-imx-6f38477d3ad4cbe7d9efa9344dec805144828b2e.zip u-boot-imx-6f38477d3ad4cbe7d9efa9344dec805144828b2e.tar.gz u-boot-imx-6f38477d3ad4cbe7d9efa9344dec805144828b2e.tar.bz2 |
elf: add prototype for valid_elf_image
Signed-off-by: Jeroen Hofstee <jeroen@myspectrum.nl>
Diffstat (limited to 'include/elf.h')
-rw-r--r-- | include/elf.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/elf.h b/include/elf.h index b8ecc41..63d9341 100644 --- a/include/elf.h +++ b/include/elf.h @@ -570,4 +570,6 @@ unsigned long elf_hash(const unsigned char *name); that may still be in object files. */ #define R_PPC_TOC16 255 +int valid_elf_image(unsigned long addr); + #endif /* _ELF_H */ |