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/main.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/main.c')
| -rw-r--r-- | common/main.c | 64 | 
1 files changed, 26 insertions, 38 deletions
| diff --git a/common/main.c b/common/main.c index 445cb1849..758ef8d32 100644 --- a/common/main.c +++ b/common/main.c @@ -36,6 +36,10 @@  #include <post.h> +#ifdef CONFIG_SILENT_CONSOLE +DECLARE_GLOBAL_DATA_PTR; +#endif +  #if defined(CONFIG_BOOT_RETRY_TIME) && defined(CONFIG_RESET_TO_RETRY)  extern int do_reset (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);		/* for do_reset() prototype */  #endif @@ -105,14 +109,10 @@ static __inline__ int abortboot(int bootdelay)  	u_int i;  #ifdef CONFIG_SILENT_CONSOLE -	{ -		DECLARE_GLOBAL_DATA_PTR; - -		if (gd->flags & GD_FLG_SILENT) { -			/* Restore serial console */ -			console_assign (stdout, "serial"); -			console_assign (stderr, "serial"); -		} +	if (gd->flags & GD_FLG_SILENT) { +		/* Restore serial console */ +		console_assign (stdout, "serial"); +		console_assign (stderr, "serial");  	}  #endif @@ -195,17 +195,13 @@ static __inline__ int abortboot(int bootdelay)  #  endif  #ifdef CONFIG_SILENT_CONSOLE -	{ -		DECLARE_GLOBAL_DATA_PTR; - -		if (abort) { -			/* permanently enable normal console output */ -			gd->flags &= ~(GD_FLG_SILENT); -		} else if (gd->flags & GD_FLG_SILENT) { -			/* Restore silent console */ -			console_assign (stdout, "nulldev"); -			console_assign (stderr, "nulldev"); -		} +	if (abort) { +		/* permanently enable normal console output */ +		gd->flags &= ~(GD_FLG_SILENT); +	} else if (gd->flags & GD_FLG_SILENT) { +		/* Restore silent console */ +		console_assign (stdout, "nulldev"); +		console_assign (stderr, "nulldev");  	}  #endif @@ -223,14 +219,10 @@ static __inline__ int abortboot(int bootdelay)  	int abort = 0;  #ifdef CONFIG_SILENT_CONSOLE -	{ -		DECLARE_GLOBAL_DATA_PTR; - -		if (gd->flags & GD_FLG_SILENT) { -			/* Restore serial console */ -			console_assign (stdout, "serial"); -			console_assign (stderr, "serial"); -		} +	if (gd->flags & GD_FLG_SILENT) { +		/* Restore serial console */ +		console_assign (stdout, "serial"); +		console_assign (stderr, "serial");  	}  #endif @@ -279,17 +271,13 @@ static __inline__ int abortboot(int bootdelay)  	putc ('\n');  #ifdef CONFIG_SILENT_CONSOLE -	{ -		DECLARE_GLOBAL_DATA_PTR; - -		if (abort) { -			/* permanently enable normal console output */ -			gd->flags &= ~(GD_FLG_SILENT); -		} else if (gd->flags & GD_FLG_SILENT) { -			/* Restore silent console */ -			console_assign (stdout, "nulldev"); -			console_assign (stderr, "nulldev"); -		} +	if (abort) { +		/* permanently enable normal console output */ +		gd->flags &= ~(GD_FLG_SILENT); +	} else if (gd->flags & GD_FLG_SILENT) { +		/* Restore silent console */ +		console_assign (stdout, "nulldev"); +		console_assign (stderr, "nulldev");  	}  #endif |