Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@xxxxxxxxxxxx> --- common/meminfo.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/common/meminfo.c b/common/meminfo.c index 06fce5a..989024f 100644 --- a/common/meminfo.c +++ b/common/meminfo.c @@ -9,12 +9,12 @@ static int display_meminfo(void) ulong mend = mem_malloc_end(); ulong msize = mend - mstart + 1; - debug("barebox code: 0x%p -> 0x%p\n", _stext, _etext); - debug("bss segment: 0x%p -> 0x%p\n", __bss_start, __bss_stop); - printf("malloc space: 0x%08lx -> 0x%08lx (size %s)\n", + pr_debug("barebox code: 0x%p -> 0x%p\n", _stext, _etext); + pr_debug("bss segment: 0x%p -> 0x%p\n", __bss_start, __bss_stop); + pr_info("malloc space: 0x%08lx -> 0x%08lx (size %s)\n", mstart, mend, size_human_readable(msize)); #ifdef CONFIG_ARM - printf("stack space: 0x%08x -> 0x%08x (size %s)\n", + pr_info("stack space: 0x%08x -> 0x%08x (size %s)\n", STACK_BASE, STACK_BASE + STACK_SIZE, size_human_readable(STACK_SIZE)); #endif -- 1.7.10.4 _______________________________________________ barebox mailing list barebox@xxxxxxxxxxxxxxxxxxx http://lists.infradead.org/mailman/listinfo/barebox