diff options
Diffstat (limited to 'common/console.c')
| -rw-r--r-- | common/console.c | 10 | 
1 files changed, 10 insertions, 0 deletions
| diff --git a/common/console.c b/common/console.c index 629f60b7f..1e0ca8de1 100644 --- a/common/console.c +++ b/common/console.c @@ -191,6 +191,11 @@ void putc (const char c)  {  	DECLARE_GLOBAL_DATA_PTR; +#ifdef CONFIG_SILENT_CONSOLE +	if (gd->flags & GD_FLG_SILENT) +		return(0); +#endif +  	if (gd->flags & GD_FLG_DEVINIT) {  		/* Send to the standard output */  		fputc (stdout, c); @@ -204,6 +209,11 @@ void puts (const char *s)  {  	DECLARE_GLOBAL_DATA_PTR; +#ifdef CONFIG_SILENT_CONSOLE +	if (gd->flags & GD_FLG_SILENT) +		return; +#endif +  	if (gd->flags & GD_FLG_DEVINIT) {  		/* Send to the standard output */  		fputs (stdout, s); |