userboot: Use C99 Initializers for each of the consoles here

Sponsored by:		Netflix
This commit is contained in:
Warner Losh 2024-05-19 15:03:34 -06:00
parent 1f180d0a40
commit 125b181674
1 changed files with 14 additions and 16 deletions

View File

@ -42,14 +42,13 @@ static int userboot_cons_getchar(void);
static int userboot_cons_poll(void);
struct console userboot_console = {
"userboot",
"userboot",
0,
userboot_cons_probe,
userboot_cons_init,
userboot_cons_putchar,
userboot_cons_getchar,
userboot_cons_poll,
.c_name = "userboot",
.c_desc = "userboot",
.c_probe = userboot_cons_probe,
.c_init = userboot_cons_init,
.c_out = userboot_cons_putchar,
.c_in = userboot_cons_getchar,
.c_ready = userboot_cons_poll,
};
/*
@ -57,14 +56,13 @@ struct console userboot_console = {
* console to comconsole without resulting in an error
*/
struct console userboot_comconsole = {
"comconsole",
"comconsole",
0,
userboot_comcons_probe,
userboot_comcons_init,
userboot_cons_putchar,
userboot_cons_getchar,
userboot_cons_poll,
.c_name = "comconsole",
.c_desc = "comconsole",
.c_probe = userboot_comcons_probe,
.c_init = userboot_comcons_init,
.c_out = userboot_cons_putchar,
.c_in = userboot_cons_getchar,
.c_ready = userboot_cons_poll,
};
static void