[PATCH v1 05/11] console: Set console device counter in console_devices_set()
Andy Shevchenko
andriy.shevchenko at linux.intel.com
Thu Feb 11 16:09:38 CET 2021
console_devices_set() missed the console device counter to be set correctly.
Fixes: 45375adc9799 ("console: add function console_devices_set")
Cc: Patrick Delaunay <patrick.delaunay at foss.st.com>
Signed-off-by: Andy Shevchenko <andriy.shevchenko at linux.intel.com>
---
common/console.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/common/console.c b/common/console.c
index b1c3ed17cc03..4595376dcc0b 100644
--- a/common/console.c
+++ b/common/console.c
@@ -235,6 +235,7 @@ int cd_count[MAX_FILES];
static void __maybe_unused console_devices_set(int file, struct stdio_dev *dev)
{
console_devices[file][0] = dev;
+ cd_count[file] = 1;
}
/**
--
2.30.0
More information about the U-Boot
mailing list