mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 15:14:43 +00:00
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 <dbrownell@users.sourceforge.net>
This commit is contained in:
parent
28887d831b
commit
52f6c34c85
1 changed files with 1 additions and 1 deletions
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue