diff options
| author | Wolfgang Denk <wd@pollux.denx.de> | 2006-03-31 18:32:53 +0200 | 
|---|---|---|
| committer | Wolfgang Denk <wd@pollux.denx.de> | 2006-03-31 18:32:53 +0200 | 
| commit | d87080b721e4f8dca977af7571c5338ae7bb8db7 (patch) | |
| tree | 514fc21eec39a2dd57f7aea516844a4400f8f140 /common/cmd_elf.c | |
| parent | f6dbbe986481cff01334c64cacb971a5f237a9a9 (diff) | |
| download | olio-uboot-2014.01-d87080b721e4f8dca977af7571c5338ae7bb8db7.tar.xz olio-uboot-2014.01-d87080b721e4f8dca977af7571c5338ae7bb8db7.zip | |
GCC-4.x fixes: clean up global data pointer initialization for all boards.
Diffstat (limited to 'common/cmd_elf.c')
| -rw-r--r-- | common/cmd_elf.c | 8 | 
1 files changed, 3 insertions, 5 deletions
| diff --git a/common/cmd_elf.c b/common/cmd_elf.c index eccf2e9e7..1d92bb37d 100644 --- a/common/cmd_elf.c +++ b/common/cmd_elf.c @@ -19,6 +19,9 @@  #include <net.h>  #include <elf.h> +#if defined(CONFIG_WALNUT) || defined(CFG_VXWORKS_MAC_PTR) +DECLARE_GLOBAL_DATA_PTR; +#endif  #if (CONFIG_COMMANDS & CFG_CMD_ELF) @@ -78,11 +81,6 @@ int do_bootelf (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])   * ====================================================================== */  int do_bootvx ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])  { -#if defined(CONFIG_WALNUT)	|| \ -    defined(CFG_VXWORKS_MAC_PTR) -	DECLARE_GLOBAL_DATA_PTR; -#endif -  	unsigned long addr;		/* Address of image            */  	unsigned long bootaddr;		/* Address to put the bootline */  	char *bootline;			/* Text of the bootline        */ |