summaryrefslogtreecommitdiff
path: root/common/spl/spl_sdp.c
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2018-02-23 13:04:48 -0500
committerTom Rini <trini@konsulko.com>2018-02-23 13:04:48 -0500
commit1c124d379dbb78a93495202749efe952fbddba1c (patch)
tree0a402df7f30b79cc9321061b778eb56ca0a5cea9 /common/spl/spl_sdp.c
parent9ab81fcc8a0181cc19b8234d0e7632bd09c27c83 (diff)
parentb0cce3f90f546da0c1e0dda5abcaf05d81078b0d (diff)
downloadu-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.c4
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;
}