[U-Boot] [RFC/RESEND 05/22] thunderx: move DRAM prints to debug
Tim Harvey
tharvey at gateworks.com
Mon Mar 4 17:34:20 UTC 2019
Signed-off-by: Tim Harvey <tharvey at gateworks.com>
---
board/cavium/thunderx/thunderx.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/board/cavium/thunderx/thunderx.c b/board/cavium/thunderx/thunderx.c
index 57dce5aee0..0cc03a463f 100644
--- a/board/cavium/thunderx/thunderx.c
+++ b/board/cavium/thunderx/thunderx.c
@@ -92,13 +92,13 @@ int dram_init(void)
ssize_t dram_size;
int node;
- printf("Initializing\nNodes in system: %zd\n", node_count);
+ debug("Initializing\nNodes in system: %zd\n", node_count);
gd->ram_size = 0;
for (node = 0; node < node_count; node++) {
dram_size = atf_dram_size(node);
- printf("Node %d: %zd MBytes of DRAM\n", node, dram_size >> 20);
+ debug("Node %d: %zd MBytes of DRAM\n", node, dram_size >> 20);
gd->ram_size += dram_size;
}
--
2.17.1
More information about the U-Boot
mailing list