diff mbox series

[U-Boot,RFC,05/22] thunderx: move DRAM prints to debug

Message ID 20190222180319.32221-6-tharvey@gateworks.com
State RFC
Delegated to: Tom Rini
Headers show
Series Add support for Cavium Octeon-TX CN80XX/CN81XX | expand

Commit Message

Tim Harvey Feb. 22, 2019, 6:03 p.m. UTC
Signed-off-by: Tim Harvey <tharvey@gateworks.com>
---
 board/cavium/thunderx/thunderx.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
diff mbox series

Patch

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;
 	}