aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichal Simek <michal.simek@xilinx.com>2019-10-17 14:12:48 +0200
committerMichal Simek <michal.simek@xilinx.com>2019-10-24 13:37:03 +0200
commit4ab8d6328265da995401fcbfb8be5e20f660cfb0 (patch)
tree29c2c72bda14909c7a5d7475ce0f2525e342b78d
parent6bf27ed9ae29bfa9a5e43ed4e5e65724880b5d52 (diff)
downloadu-boot-4ab8d6328265da995401fcbfb8be5e20f660cfb0.zip
u-boot-4ab8d6328265da995401fcbfb8be5e20f660cfb0.tar.gz
u-boot-4ab8d6328265da995401fcbfb8be5e20f660cfb0.tar.bz2
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: 0905046050b0 ("microblaze: Switch to generic bootm implementation") Signed-off-by: Michal Simek <michal.simek@xilinx.com>
-rw-r--r--arch/microblaze/lib/bootm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/microblaze/lib/bootm.c b/arch/microblaze/lib/bootm.c
index 11e5347..5650109 100644
--- a/arch/microblaze/lib/bootm.c
+++ b/arch/microblaze/lib/bootm.c
@@ -92,7 +92,7 @@ static void boot_jump_linux(bootm_headers_t *images, int flag)
static void boot_prep_linux(bootm_headers_t *images)
{
if (IMAGE_ENABLE_OF_LIBFDT && images->ft_len) {
- printf("using: FDT\n");
+ debug("using: FDT\n");
if (image_setup_linux(images)) {
printf("FDT creation failed! hanging...");
hang();