[PATCH 02/11] memory: do not try to reserve iomem on sandbox
Sascha Hauer
s.hauer at pengutronix.de
Wed Dec 7 07:52:58 EST 2011
Signed-off-by: Sascha Hauer <s.hauer at pengutronix.de>
---
common/memory.c | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/common/memory.c b/common/memory.c
index 7d0f4ca..1d72888 100644
--- a/common/memory.c
+++ b/common/memory.c
@@ -53,6 +53,7 @@ void mem_malloc_init(void *start, void *end)
malloc_brk = malloc_start;
}
+#ifndef __SANDBOX__
static int mem_malloc_resource(void)
{
/*
@@ -75,10 +76,10 @@ static int mem_malloc_resource(void)
#ifdef STACK_BASE
request_sdram_region("stack", STACK_BASE, STACK_SIZE);
#endif
-
return 0;
}
coredevice_initcall(mem_malloc_resource);
+#endif
static void *sbrk_no_zero(ptrdiff_t increment)
{
--
1.7.7.3
More information about the barebox
mailing list