diff options
author | Anatolij Gustschin | 2017-08-01 16:17:12 +0200 |
---|---|---|
committer | Tom Rini | 2017-09-13 08:27:01 -0400 |
commit | 2d2531be861cb7ec25aa7980b1099ca4f5f46d86 (patch) | |
tree | 91615e26ac20c7bbb3f03518c1a0cf4fa1f33150 /common | |
parent | ba39608147c797cffb266579b5791649f0f8e60c (diff) |
spl: add newline in debug output
With debug enabled, SPL output following these debug prints is on the
same line and it is hard to read. Fix it.
Signed-off-by: Anatolij Gustschin <agust@denx.de>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'common')
-rw-r--r-- | common/spl/spl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/spl/spl.c b/common/spl/spl.c index 8b219ba6908..ce9819e4db0 100644 --- a/common/spl/spl.c +++ b/common/spl/spl.c @@ -158,7 +158,7 @@ int spl_parse_image_header(struct spl_image_info *spl_image, spl_image->load_addr, spl_image->size); #else /* LEGACY image not supported */ - debug("Legacy boot image support not enabled, proceeding to other boot methods"); + debug("Legacy boot image support not enabled, proceeding to other boot methods\n"); return -EINVAL; #endif } else { @@ -196,7 +196,7 @@ int spl_parse_image_header(struct spl_image_info *spl_image, spl_set_header_raw_uboot(spl_image); #else /* RAW image not supported, proceed to other boot methods. */ - debug("Raw boot image support not enabled, proceeding to other boot methods"); + debug("Raw boot image support not enabled, proceeding to other boot methods\n"); return -EINVAL; #endif } |