diff options
author | Tom Rini <trini@konsulko.com> | 2018-02-23 13:04:48 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2018-02-23 13:04:48 -0500 |
commit | 1c124d379dbb78a93495202749efe952fbddba1c (patch) | |
tree | 0a402df7f30b79cc9321061b778eb56ca0a5cea9 /common/spl/spl_sdp.c | |
parent | 9ab81fcc8a0181cc19b8234d0e7632bd09c27c83 (diff) | |
parent | b0cce3f90f546da0c1e0dda5abcaf05d81078b0d (diff) | |
download | u-boot-1c124d379dbb78a93495202749efe952fbddba1c.tar.gz |
Merge git://git.denx.de/u-boot-usb
Diffstat (limited to 'common/spl/spl_sdp.c')
-rw-r--r-- | common/spl/spl_sdp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/spl/spl_sdp.c b/common/spl/spl_sdp.c index 333d518f4d..0c4603a3db 100644 --- a/common/spl/spl_sdp.c +++ b/common/spl/spl_sdp.c @@ -24,13 +24,13 @@ static int spl_sdp_load_image(struct spl_image_info *spl_image, ret = sdp_init(controller_index); if (ret) { - pr_err("SDP init failed: %d", ret); + pr_err("SDP init failed: %d\n", ret); return -ENODEV; } /* This command typically does not return but jumps to an image */ sdp_handle(controller_index); - pr_err("SDP ended"); + pr_err("SDP ended\n"); return -EINVAL; } |