
11 Feb
2021
11 Feb
'21
4:09 p.m.
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@foss.st.com Signed-off-by: Andy Shevchenko andriy.shevchenko@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