summaryrefslogtreecommitdiff
path: root/board/renesas/rcar-common/common.c
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2023-03-20 17:51:10 -0400
committerTom Rini <trini@konsulko.com>2023-03-20 17:51:10 -0400
commit1a4f2cc55a2e8d12f7b5fe13a5ba167e48ef7a85 (patch)
treecc2c42f4ecece074870c2b5821c4041c7e24d7ce /board/renesas/rcar-common/common.c
parent95e0f9ac095bb250024c7648c3b0733d0a61a189 (diff)
parent6254c5f7e176311eb8bd57817f85d1eed1c362cb (diff)
Merge branch 'next' of https://source.denx.de/u-boot/custodians/u-boot-sh into next
Diffstat (limited to 'board/renesas/rcar-common/common.c')
-rw-r--r--board/renesas/rcar-common/common.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/board/renesas/rcar-common/common.c b/board/renesas/rcar-common/common.c
index daa1beb14f8..0ddae95e230 100644
--- a/board/renesas/rcar-common/common.c
+++ b/board/renesas/rcar-common/common.c
@@ -73,9 +73,9 @@ static int is_mem_overlap(void *blob, int first_mem_node, int curr_mem_node)
if (curr_mem_res.start >= first_mem_res.end)
continue;
- printf("Overlap found: 0x%llx..0x%llx / 0x%llx..0x%llx\n",
- first_mem_res.start, first_mem_res.end,
- curr_mem_res.start, curr_mem_res.end);
+ log_debug("Overlap found: 0x%llx..0x%llx / 0x%llx..0x%llx\n",
+ first_mem_res.start, first_mem_res.end,
+ curr_mem_res.start, curr_mem_res.end);
return 1;
}