diff options
| author | Wolfgang Denk <wd@denx.de> | 2010-11-12 22:24:06 +0100 | 
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2010-11-12 22:24:06 +0100 | 
| commit | d963e84c92a63b4e6c4f2f80482a5ecbe9b24fe0 (patch) | |
| tree | 07dd5889d73f4b66ad608815adcf6f2f953d9501 /arch/sh/lib/board.c | |
| parent | 66fca016057b1c6b697552cc7220ebada9d4f82d (diff) | |
| parent | 0c0892be0d93a5a892b93739c5eb3bf692fed4ff (diff) | |
| download | olio-uboot-2014.01-d963e84c92a63b4e6c4f2f80482a5ecbe9b24fe0.tar.xz olio-uboot-2014.01-d963e84c92a63b4e6c4f2f80482a5ecbe9b24fe0.zip | |
Merge branch 'master' of /home/wd/git/u-boot/master
Diffstat (limited to 'arch/sh/lib/board.c')
| -rw-r--r-- | arch/sh/lib/board.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/arch/sh/lib/board.c b/arch/sh/lib/board.c index a302fc2e6..fe53ab4de 100644 --- a/arch/sh/lib/board.c +++ b/arch/sh/lib/board.c @@ -89,7 +89,7 @@ static int sh_pci_init(void)  static int sh_mem_env_init(void)  { -	mem_malloc_init(CONFIG_SYS_TEXT_BASE - CONFIG_SYS_GBL_DATA_SIZE - +	mem_malloc_init(CONFIG_SYS_TEXT_BASE - GENERATED_GBL_DATA_SIZE -  			CONFIG_SYS_MALLOC_LEN, CONFIG_SYS_MALLOC_LEN - 16);  	env_relocate();  	jumptable_init(); @@ -144,7 +144,7 @@ void sh_generic_init(void)  	bd_t *bd;  	init_fnc_t **init_fnc_ptr; -	memset(gd, 0, CONFIG_SYS_GBL_DATA_SIZE); +	memset(gd, 0, GENERATED_GBL_DATA_SIZE);  	gd->flags |= GD_FLG_RELOC;	/* tell others: relocation done */ |