diff options
author | Nobuhiro Iwamatsu <iwamatsu@nigauri.org> | 2009-10-15 13:36:34 +0900 |
---|---|---|
committer | Nobuhiro Iwamatsu <iwamatsu@nigauri.org> | 2009-10-30 08:41:15 +0900 |
commit | 0f9eaf4b323ea0ca95944b84c7465b81ba575514 (patch) | |
tree | 67cbc142f6575e6da4e22f7a535dc5cb7ea6522e /lib_nios2/board.c | |
parent | f2b4bc04d6aed6be712d236dab48ac4c4da22cbf (diff) | |
download | u-boot-midas-0f9eaf4b323ea0ca95944b84c7465b81ba575514.tar.gz u-boot-midas-0f9eaf4b323ea0ca95944b84c7465b81ba575514.tar.bz2 u-boot-midas-0f9eaf4b323ea0ca95944b84c7465b81ba575514.zip |
sh: Remove malloc_bin_reloc from lib_sh, lib_nios2 and lib_nios.
By "arm/microblaze/nios/nios2/sh: Remove relocation fixups"
(commit: 0630535e2d062dd73c1ceca5c6125c86d1127a49", doesn't need
malloc_bin_reloc function. This commit remove this.
Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
Diffstat (limited to 'lib_nios2/board.c')
-rw-r--r-- | lib_nios2/board.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib_nios2/board.c b/lib_nios2/board.c index c6b36f4a2e..008f04f956 100644 --- a/lib_nios2/board.c +++ b/lib_nios2/board.c @@ -52,7 +52,6 @@ DECLARE_GLOBAL_DATA_PTR; */ -extern void malloc_bin_reloc (void); typedef int (init_fnc_t) (void); @@ -121,7 +120,6 @@ void board_init (void) /* The Malloc area is immediately below the monitor copy in RAM */ mem_malloc_init(CONFIG_SYS_MALLOC_BASE, CONFIG_SYS_MALLOC_LEN); - malloc_bin_reloc(); WATCHDOG_RESET (); bd->bi_flashsize = flash_init(); |