diff options
author | Graeme Russ <graeme.russ@gmail.com> | 2009-11-24 20:04:13 +1100 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2009-12-05 01:02:10 +0100 |
commit | b4feeb4e8a1d9124bae39985a97b99d08e06186d (patch) | |
tree | ef7a0d8a2b8616561da4f3ef578e5c2e1823ceec /common/dlmalloc.c | |
parent | c74bfce0fb20ec4d01809fa0566263894923467b (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.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/common/dlmalloc.c b/common/dlmalloc.c index ca088a17d15..735b3443e63 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 */ |