spl: Add some missing newlines

Signed-off-by: Andrew F. Davis <afd@ti.com>
Acked-by: Lokesh Vutla <lokeshvutla@ti.com>
Acked-by: Michal Simek <michal.simek@xilinx.com>
This commit is contained in:
Andrew F. Davis 2017-01-12 10:19:55 -06:00 committed by Tom Rini
parent 5d28b930f2
commit cf947da19a
1 changed files with 2 additions and 2 deletions

View File

@ -266,7 +266,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
@ -339,7 +339,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);
}