From: David Brownell Date: Sun, 30 Aug 2009 18:05:29 +0000 (-0700) Subject: bugfix CONFIG_SYS_CONSOLE_INFO_QUIET X-Git-Tag: v2009.08~2 X-Git-Url: https://git.kernelconcepts.de/?p=karo-tx-uboot.git;a=commitdiff_plain;h=52f6c34c85d6c16f2a41433b5000490ecf374992 bugfix CONFIG_SYS_CONSOLE_INFO_QUIET The "console: unify printing current devices" patch goofed: CONFIG_SYS_CONSOLE_INFO_QUIET is supposed to *REMOVE* boot time noise, not add it. Said patch changed the #ifndefs to #ifdef; this one restores them to the proper sense. Signed-off-by: David Brownell --- diff --git a/common/console.c b/common/console.c index 867c12c102..dc0d13b5a5 100644 --- a/common/console.c +++ b/common/console.c @@ -534,7 +534,7 @@ int console_init_f(void) void stdio_print_current_devices(void) { -#ifdef CONFIG_SYS_CONSOLE_INFO_QUIET +#ifndef CONFIG_SYS_CONSOLE_INFO_QUIET /* Print information */ puts("In: "); if (stdio_devices[stdin] == NULL) {