From: Anatolij Gustschin Date: Tue, 1 Aug 2017 14:17:12 +0000 (+0200) Subject: spl: add newline in debug output X-Git-Tag: v2017.11-rc1~145 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2d2531be861cb7ec25aa7980b1099ca4f5f46d86;p=platform%2Fkernel%2Fu-boot.git 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 Reviewed-by: Bin Meng --- diff --git a/common/spl/spl.c b/common/spl/spl.c index 8b219ba..ce9819e 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 }