mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 23:24:38 +00:00
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>
This commit is contained in:
parent
ba39608147
commit
2d2531be86
1 changed files with 2 additions and 2 deletions
|
@ -158,7 +158,7 @@ int spl_parse_image_header(struct spl_image_info *spl_image,
|
||||||
spl_image->load_addr, spl_image->size);
|
spl_image->load_addr, spl_image->size);
|
||||||
#else
|
#else
|
||||||
/* LEGACY image not supported */
|
/* 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;
|
return -EINVAL;
|
||||||
#endif
|
#endif
|
||||||
} else {
|
} else {
|
||||||
|
@ -196,7 +196,7 @@ int spl_parse_image_header(struct spl_image_info *spl_image,
|
||||||
spl_set_header_raw_uboot(spl_image);
|
spl_set_header_raw_uboot(spl_image);
|
||||||
#else
|
#else
|
||||||
/* RAW image not supported, proceed to other boot methods. */
|
/* 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;
|
return -EINVAL;
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue