Skip to content
Snippets Groups Projects
Commit 4ab8d632 authored by Michal Simek's avatar Michal Simek
Browse files

microblaze: Fix FDT message in boot_prep_linux()


There is no need to show FDT message in regular flow that's why switch it
to debug level.

Fixes: 09050460 ("microblaze: Switch to generic bootm implementation")
Signed-off-by: default avatarMichal Simek <michal.simek@xilinx.com>
parent 6bf27ed9
No related branches found
No related tags found
No related merge requests found
...@@ -92,7 +92,7 @@ static void boot_jump_linux(bootm_headers_t *images, int flag) ...@@ -92,7 +92,7 @@ static void boot_jump_linux(bootm_headers_t *images, int flag)
static void boot_prep_linux(bootm_headers_t *images) static void boot_prep_linux(bootm_headers_t *images)
{ {
if (IMAGE_ENABLE_OF_LIBFDT && images->ft_len) { if (IMAGE_ENABLE_OF_LIBFDT && images->ft_len) {
printf("using: FDT\n"); debug("using: FDT\n");
if (image_setup_linux(images)) { if (image_setup_linux(images)) {
printf("FDT creation failed! hanging..."); printf("FDT creation failed! hanging...");
hang(); hang();
......
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