Bring the user-land console driver closer to uKernel

This commit is contained in:
Pierre Pronchery 2018-06-21 00:01:46 +02:00
parent 81a378c9fe
commit 92c2aca5fd

View File

@ -38,7 +38,7 @@ ukConsole * console_init(ukBus * bus, char const * name)
{
printf("%s%s%s\n", name, (bus != NULL) ? " at " : "",
(bus != NULL) ? bus->name : "");
_console = _stdio_console_init(bus);
_console = drivers[i]->init(bus);
}
if(_console == NULL)
{