diff options
author | Tom Rini | 2019-06-28 08:00:22 -0400 |
---|---|---|
committer | Tom Rini | 2019-06-28 08:00:22 -0400 |
commit | 0352e878d2b80b2575e02310e891e936251b3992 (patch) | |
tree | 3a35d816b28031ae2f5a8243afcf324779b4031f /common/spl/spl_sdp.c | |
parent | cb8cc1d8fbf9c4254a2018ad697fc6fd08fbb158 (diff) | |
parent | 0ac662da35e48b859b5d43e0c86f233f25730ee5 (diff) |
Merge tag 'u-boot-imx-20190628' of https://gitlab.denx.de/u-boot/custodians/u-boot-imx
Fixes for 2019.07
- menlo board
- allow SDB on Sabre
- HAB for mx6sl
- apalis board
Diffstat (limited to 'common/spl/spl_sdp.c')
-rw-r--r-- | common/spl/spl_sdp.c | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/common/spl/spl_sdp.c b/common/spl/spl_sdp.c index 7fc44049718..806bf1327ef 100644 --- a/common/spl/spl_sdp.c +++ b/common/spl/spl_sdp.c @@ -29,10 +29,14 @@ static int spl_sdp_load_image(struct spl_image_info *spl_image, return -ENODEV; } - /* This command typically does not return but jumps to an image */ - sdp_handle(controller_index); - pr_err("SDP ended\n"); + /* + * This command either loads a legacy image, jumps and never returns, + * or it loads a FIT image and returns it to be handled by the SPL + * code. + */ + ret = spl_sdp_handle(controller_index, spl_image); + debug("SDP ended\n"); - return -EINVAL; + return ret; } SPL_LOAD_IMAGE_METHOD("USB SDP", 0, BOOT_DEVICE_BOARD, spl_sdp_load_image); |