diff options
| author | Gabor Juhos <juhosg@openwrt.org> | 2013-01-21 21:10:38 +0000 | 
|---|---|---|
| committer | Tom Rini <trini@ti.com> | 2013-02-19 17:01:26 -0500 | 
| commit | 7b395232da84ae59bd32985bf944a0a9f417a543 (patch) | |
| tree | 9ce04937d6626a1021c7345cf0c85646c0fe1f2d /arch/avr32/lib/board.c | |
| parent | 55db9ccae38866c627e64b497deda73547a1e84b (diff) | |
| download | olio-uboot-2014.01-7b395232da84ae59bd32985bf944a0a9f417a543.tar.xz olio-uboot-2014.01-7b395232da84ae59bd32985bf944a0a9f417a543.zip | |
malloc: make malloc_bin_reloc static
On architectures where manual relocation
is needed, the 'malloc_bin_reloc' function
must be called after 'mem_malloc_init'.
Make the 'malloc_bin_reloc' function static
and call it directly from 'mem_malloc_init'
instead of calling that from board_init_{r,f}
functions of the affected architectures.
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
Cc: Wolfgang Denk <wd@denx.de>
Cc: Andreas Bießmann <andreas.devel@gmail.com>
Cc: Jason Jin <Jason.jin@freescale.com>
Cc: Macpaul Lin <macpaul@andestech.com>
Cc: Daniel Hellstrom <daniel@gaisler.com>
Cc: Daniel Schwierzeck <daniel.schwierzeck@googlemail.com>
Diffstat (limited to 'arch/avr32/lib/board.c')
| -rw-r--r-- | arch/avr32/lib/board.c | 1 | 
1 files changed, 0 insertions, 1 deletions
| diff --git a/arch/avr32/lib/board.c b/arch/avr32/lib/board.c index d3c8cb76d..bd1be73ae 100644 --- a/arch/avr32/lib/board.c +++ b/arch/avr32/lib/board.c @@ -286,7 +286,6 @@ void board_init_r(gd_t *new_gd, ulong dest_addr)  	/* The malloc area is right below the monitor image in RAM */  	mem_malloc_init(CONFIG_SYS_MONITOR_BASE + gd->reloc_off -  			CONFIG_SYS_MALLOC_LEN, CONFIG_SYS_MALLOC_LEN); -	malloc_bin_reloc();  	dma_alloc_init();  	enable_interrupts(); |