Skip to content
Snippets Groups Projects
Commit 52f6c34c authored by David Brownell's avatar David Brownell Committed by Wolfgang Denk
Browse files

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: default avatarDavid Brownell <dbrownell@users.sourceforge.net>
parent 28887d83
No related branches found
No related tags found
No related merge requests found
...@@ -534,7 +534,7 @@ int console_init_f(void) ...@@ -534,7 +534,7 @@ int console_init_f(void)
void stdio_print_current_devices(void) void stdio_print_current_devices(void)
{ {
#ifdef CONFIG_SYS_CONSOLE_INFO_QUIET #ifndef CONFIG_SYS_CONSOLE_INFO_QUIET
/* Print information */ /* Print information */
puts("In: "); puts("In: ");
if (stdio_devices[stdin] == NULL) { if (stdio_devices[stdin] == NULL) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment