diff options
| author | Haavard Skinnemoen <hskinnemoen@atmel.com> | 2007-06-19 15:40:01 +0200 | 
|---|---|---|
| committer | Haavard Skinnemoen <hskinnemoen@atmel.com> | 2007-06-19 15:40:01 +0200 | 
| commit | 448f5fea4c7dd531b69e4e60eed2a72b89b4ed6d (patch) | |
| tree | 022599b68a0e72f34f3f152f4a0056b557a06a44 /common/console.c | |
| parent | f2134f8e9eb006bdcd729e89f309c07b2fa45180 (diff) | |
| parent | 5ffa76a032279bc6d3230b703eda32d13305ba13 (diff) | |
| download | olio-uboot-2014.01-448f5fea4c7dd531b69e4e60eed2a72b89b4ed6d.tar.xz olio-uboot-2014.01-448f5fea4c7dd531b69e4e60eed2a72b89b4ed6d.zip  | |
Merge branch 'upstream'
Diffstat (limited to 'common/console.c')
| -rw-r--r-- | common/console.c | 8 | 
1 files changed, 1 insertions, 7 deletions
diff --git a/common/console.c b/common/console.c index e9f23bec1..d8a0cb6c7 100644 --- a/common/console.c +++ b/common/console.c @@ -494,13 +494,7 @@ int console_init_r (void)  	/* suppress all output if splash screen is enabled and we have  	   a bmp to display                                            */  	if (getenv("splashimage") != NULL) -		outputdev = search_device (DEV_FLAGS_OUTPUT, "nulldev"); -#endif - -#ifdef CONFIG_SILENT_CONSOLE -	/* Suppress all output if "silent" mode requested		*/ -	if (gd->flags & GD_FLG_SILENT) -		outputdev = search_device (DEV_FLAGS_OUTPUT, "nulldev"); +		gd->flags |= GD_FLG_SILENT;  #endif  	/* Scan devices looking for input and output devices */  |