aboutsummaryrefslogtreecommitdiff
path: root/common/dlmalloc.c
diff options
context:
space:
mode:
authorGraeme Russ <graeme.russ@gmail.com>2009-11-24 20:04:13 +1100
committerWolfgang Denk <wd@denx.de>2009-12-05 01:02:10 +0100
commitb4feeb4e8a1d9124bae39985a97b99d08e06186d (patch)
treeef7a0d8a2b8616561da4f3ef578e5c2e1823ceec /common/dlmalloc.c
parentc74bfce0fb20ec4d01809fa0566263894923467b (diff)
i386: Fix malloc initialization
Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
Diffstat (limited to 'common/dlmalloc.c')
-rw-r--r--common/dlmalloc.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/common/dlmalloc.c b/common/dlmalloc.c
index ca088a17d..735b3443e 100644
--- a/common/dlmalloc.c
+++ b/common/dlmalloc.c
@@ -1522,11 +1522,6 @@ void *sbrk(ptrdiff_t increment)
return (void *)old;
}
-#ifndef CONFIG_X86
-/*
- * x86 boards use a slightly different init sequence thus they implement
- * their own version of mem_malloc_init()
- */
void mem_malloc_init(ulong start, ulong size)
{
mem_malloc_start = start;
@@ -1535,7 +1530,6 @@ void mem_malloc_init(ulong start, ulong size)
memset((void *)mem_malloc_start, 0, size);
}
-#endif
/* field-extraction macros */