2017-01-12 17:19 GMT+01:00 Andrew F. Davis <[email protected]>: > Signed-off-by: Andrew F. Davis <[email protected]> > --- > common/spl/spl.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/common/spl/spl.c b/common/spl/spl.c > index a76ea3a603..e43718de62 100644 > --- a/common/spl/spl.c > +++ b/common/spl/spl.c > @@ -316,7 +316,7 @@ static int boot_from_devices(struct spl_image_info > *spl_image, > loader = spl_ll_find_loader(spl_boot_list[i]); > #if defined(CONFIG_SPL_SERIAL_SUPPORT) && defined(CONFIG_SPL_LIBCOMMON_ > SUPPORT) > if (loader) > - printf("Trying to boot from %s", loader->name); > + printf("Trying to boot from %s\n", loader->name); > else > puts("SPL: Unsupported Boot Device!\n"); > #endif > @@ -389,7 +389,7 @@ void board_init_r(gd_t *dummy1, ulong dummy2) > gd->malloc_ptr / 1024); > #endif > > - debug("loaded - jumping to U-Boot..."); > + debug("loaded - jumping to U-Boot...\n"); > spl_board_prepare_for_boot(); > jump_to_image_no_args(&spl_image); > } > -- > 2.11.0 >
Acked-by: Michal Simek <[email protected]> Thanks, Michal -- Michal Simek, Ing. (M.Eng), OpenPGP -> KeyID: FE3D1F91 w: www.monstr.eu p: +42-0-721842854 Maintainer of Linux kernel - Microblaze cpu - http://www.monstr.eu/fdt/ Maintainer of Linux kernel - Xilinx Zynq ARM architecture Microblaze U-BOOT custodian and responsible for u-boot arm zynq platform _______________________________________________ U-Boot mailing list [email protected] http://lists.denx.de/mailman/listinfo/u-boot

