summaryrefslogtreecommitdiff
path: root/arch
diff options
context:
space:
mode:
authorBryan Brattlof <bb@ti.com>2023-07-18 02:01:33 +0300
committerTom Rini <trini@konsulko.com>2023-07-21 22:32:12 +0300
commitefda93c6b5aa57f06a8abda0626954cdc670320a (patch)
tree5ff622094f3e4159a258b4077768b1d30c21cd9e /arch
parentaf7c33c103450e06aecf8adba8cbc8c522295be1 (diff)
downloadu-boot-efda93c6b5aa57f06a8abda0626954cdc670320a.tar.xz
arm: mach-k3: am62a7: change some prints to debug prints
There is little need to print the devstat information or when we exit a function during a typical boot. Remove them to reduce the noise during typical operation Signed-off-by: Bryan Brattlof <bb@ti.com>
Diffstat (limited to 'arch')
-rw-r--r--arch/arm/mach-k3/am62a7_init.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/mach-k3/am62a7_init.c b/arch/arm/mach-k3/am62a7_init.c
index 8ac834cffd..d72e19936b 100644
--- a/arch/arm/mach-k3/am62a7_init.c
+++ b/arch/arm/mach-k3/am62a7_init.c
@@ -181,7 +181,7 @@ void board_init_f(ulong dummy)
setup_qos();
- printf("am62a_init: %s done\n", __func__);
+ debug("am62a_init: %s done\n", __func__);
}
static u32 __get_backup_bootmedia(u32 devstat)
@@ -279,7 +279,7 @@ u32 spl_boot_device(void)
else
bootmedia = __get_backup_bootmedia(devstat);
- printf("am62a_init: %s: devstat = 0x%x bootmedia = 0x%x bootindex = %d\n",
+ debug("am62a_init: %s: devstat = 0x%x bootmedia = 0x%x bootindex = %d\n",
__func__, devstat, bootmedia, bootindex);
return bootmedia;
}