diff options
| author | wdenk <wdenk> | 2005-03-31 18:42:15 +0000 | 
|---|---|---|
| committer | wdenk <wdenk> | 2005-03-31 18:42:15 +0000 | 
| commit | 83e40ba75d7f8d0c2e2ecdd203db96ccd79a0340 (patch) | |
| tree | c744211f014f6ba34b524c98f78d624e554261f0 /common/console.c | |
| parent | 0c1c117cf18ffa3fdc0342dfc47c6003fc5fc5a0 (diff) | |
| download | olio-uboot-2014.01-83e40ba75d7f8d0c2e2ecdd203db96ccd79a0340.tar.xz olio-uboot-2014.01-83e40ba75d7f8d0c2e2ecdd203db96ccd79a0340.zip | |
* Patch by Detlev Zundel, 31 Mar 2005:
  Cleanup duplicate definition of overwrite_console()
* Update TQM5200 configuration;
  prepare for Rev. 200 starter kit boards
Diffstat (limited to 'common/console.c')
| -rw-r--r-- | common/console.c | 8 | 
1 files changed, 3 insertions, 5 deletions
| diff --git a/common/console.c b/common/console.c index 8dbd8e389..3c535d23d 100644 --- a/common/console.c +++ b/common/console.c @@ -39,11 +39,9 @@ int console_changed = 0;   */  #ifdef CFG_CONSOLE_OVERWRITE_ROUTINE  extern int overwrite_console (void); +#define OVERWRITE_CONSOLE overwrite_console ()  #else -int overwrite_console (void) -{ -	return (0); -} +#define OVERWRITE_CONSOLE 0  #endif /* CFG_CONSOLE_OVERWRITE_ROUTINE */  #endif /* CFG_CONSOLE_IS_IN_ENV */ @@ -429,7 +427,7 @@ int console_init_r (void)  	stdoutname = getenv ("stdout");  	stderrname = getenv ("stderr"); -	if (overwrite_console () == 0) { /* if not overwritten by config switch */ +	if (OVERWRITE_CONSOLE == 0) { 	/* if not overwritten by config switch */  		inputdev  = search_device (DEV_FLAGS_INPUT,  stdinname);  		outputdev = search_device (DEV_FLAGS_OUTPUT, stdoutname);  		errdev    = search_device (DEV_FLAGS_OUTPUT, stderrname); |