summaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2013-01-25 23:39:20 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2013-02-04 15:52:41 +0100
commit8e19ee94ab7aea50635845de31daef1b593e1205 (patch)
tree4f7fac038c7160c3fd0cbab34d1e96e9dea386e1 /common
parent86db57509cff77348414d75df68fab6f3b95e60a (diff)
downloadbarebox-8e19ee94ab7aea50635845de31daef1b593e1205.tar.gz
barebox-8e19ee94ab7aea50635845de31daef1b593e1205.tar.xz
ARM: Setup stack at end of SDRAM
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'common')
-rw-r--r--common/meminfo.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/common/meminfo.c b/common/meminfo.c
index a09b2d2174..5e3ff716a5 100644
--- a/common/meminfo.c
+++ b/common/meminfo.c
@@ -14,11 +14,6 @@ static int display_meminfo(void)
debug("bss segment: 0x%p -> 0x%p\n", __bss_start, __bss_stop - 1);
printf("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",
- STACK_BASE, STACK_BASE + STACK_SIZE - 1,
- size_human_readable(STACK_SIZE));
-#endif
return 0;
}
late_initcall(display_meminfo);