Skip to content
Snippets Groups Projects
Commit cf947da1 authored by Andrew F. Davis's avatar Andrew F. Davis Committed by Tom Rini
Browse files

spl: Add some missing newlines

parent 5d28b930
No related branches found
No related tags found
No related merge requests found
...@@ -266,7 +266,7 @@ static int boot_from_devices(struct spl_image_info *spl_image, ...@@ -266,7 +266,7 @@ static int boot_from_devices(struct spl_image_info *spl_image,
loader = spl_ll_find_loader(spl_boot_list[i]); loader = spl_ll_find_loader(spl_boot_list[i]);
#if defined(CONFIG_SPL_SERIAL_SUPPORT) && defined(CONFIG_SPL_LIBCOMMON_SUPPORT) #if defined(CONFIG_SPL_SERIAL_SUPPORT) && defined(CONFIG_SPL_LIBCOMMON_SUPPORT)
if (loader) if (loader)
printf("Trying to boot from %s", loader->name); printf("Trying to boot from %s\n", loader->name);
else else
puts("SPL: Unsupported Boot Device!\n"); puts("SPL: Unsupported Boot Device!\n");
#endif #endif
...@@ -339,7 +339,7 @@ void board_init_r(gd_t *dummy1, ulong dummy2) ...@@ -339,7 +339,7 @@ void board_init_r(gd_t *dummy1, ulong dummy2)
gd->malloc_ptr / 1024); gd->malloc_ptr / 1024);
#endif #endif
debug("loaded - jumping to U-Boot..."); debug("loaded - jumping to U-Boot...\n");
spl_board_prepare_for_boot(); spl_board_prepare_for_boot();
jump_to_image_no_args(&spl_image); jump_to_image_no_args(&spl_image);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment