diff options
| author | wdenk <wdenk> | 2004-04-18 17:39:38 +0000 | 
|---|---|---|
| committer | wdenk <wdenk> | 2004-04-18 17:39:38 +0000 | 
| commit | 6e5923851ec5c11a36136abc77160d834537c4dd (patch) | |
| tree | 1d324917e695bf3aadc0041d220304d07d09027a /common/console.c | |
| parent | c26e454dfc6650428854fa2db3b1ed7f19e0ba0e (diff) | |
| download | olio-uboot-2014.01-6e5923851ec5c11a36136abc77160d834537c4dd.tar.xz olio-uboot-2014.01-6e5923851ec5c11a36136abc77160d834537c4dd.zip | |
* Cleanup, minor fixes
* Patch by Rune Torgersen, 16 Apr 2004:
  LBA48 fixes
* Patches by Pantelis Antoniou, 16 Apr 2004:
  - Fix some compile problems;
    add "once" functionality for the netretry variable
Diffstat (limited to 'common/console.c')
| -rw-r--r-- | common/console.c | 5 | 
1 files changed, 4 insertions, 1 deletions
| diff --git a/common/console.c b/common/console.c index f858fb3d4..8dbd8e389 100644 --- a/common/console.c +++ b/common/console.c @@ -412,6 +412,9 @@ int console_init_r (void)  	DECLARE_GLOBAL_DATA_PTR;  	char *stdinname, *stdoutname, *stderrname;  	device_t *inputdev = NULL, *outputdev = NULL, *errdev = NULL; +#ifdef CFG_CONSOLE_ENV_OVERWRITE +	int i; +#endif /* CFG_CONSOLE_ENV_OVERWRITE */  	/* set default handlers at first */  	gd->jt[XF_getc] = serial_getc; @@ -483,7 +486,7 @@ int console_init_r (void)  	for (i = 0; i < 3; i++) {  		setenv (stdio_names[i], stdio_devices[i]->name);  	} -#endif /*  CFG_CONSOLE_ENV_OVERWRITE */ +#endif /* CFG_CONSOLE_ENV_OVERWRITE */  #if 0  	/* If nothing usable installed, use only the initial console */ |