diff options
author | Marek Vasut <marex@denx.de> | 2016-04-28 22:44:54 (GMT) |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2016-05-17 15:52:20 (GMT) |
commit | 7e0f22674ae871460706f9cc8653487bb51e0804 (patch) | |
tree | 604b55f32c78eee29614bfd6a99d7525f168384d /common/spl/spl_net.c | |
parent | 249092fa81f3dd3fee94fd05973833e30405f3c4 (diff) | |
download | u-boot-fsl-qoriq-7e0f22674ae871460706f9cc8653487bb51e0804.tar.xz |
SPL: Let spl_parse_image_header() return value
Allow the spl_parse_image_header() to return value. This is convenient
for controlling the SPL boot flow if the loaded image is corrupted.
Signed-off-by: Marek Vasut <marex@denx.de>
Cc: Fabio Estevam <fabio.estevam@nxp.com>
Cc: Peng Fan <van.freenix@gmail.com>
Cc: Stefano Babic <sbabic@denx.de>
Cc: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'common/spl/spl_net.c')
-rw-r--r-- | common/spl/spl_net.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/common/spl/spl_net.c b/common/spl/spl_net.c index 63b20d8..ae71d26 100644 --- a/common/spl/spl_net.c +++ b/common/spl/spl_net.c @@ -34,7 +34,5 @@ int spl_net_load_image(const char *device) printf("Problem booting with BOOTP\n"); return rv; } - spl_parse_image_header((struct image_header *)load_addr); - - return 0; + return spl_parse_image_header((struct image_header *)load_addr); } |