mirror of
https://github.com/opnsense/src.git
synced 2026-06-08 16:22:46 -04:00
Fix warnings. (Initializer of promcons did miss an element in the start.)
This commit is contained in:
parent
7636612d50
commit
deebad912c
1 changed files with 1 additions and 3 deletions
|
|
@ -49,7 +49,7 @@
|
|||
#include <machine/vmparam.h>
|
||||
|
||||
/* XXX this is to fake out the console routines, while booting. */
|
||||
struct consdev promcons = { NULL, NULL, promcngetc, promcncheckc, promcnputc,
|
||||
struct consdev promcons = { NULL, NULL, NULL, promcngetc, promcncheckc, promcnputc,
|
||||
NULL, 0 /* makedev(97,0) */, CN_NORMAL };
|
||||
|
||||
struct rpb *hwrpb;
|
||||
|
|
@ -99,8 +99,6 @@ init_prom_interface(rpb)
|
|||
prom_dispatch_v.routine = c->crb_v_dispatch->entry_va;
|
||||
}
|
||||
|
||||
extern struct consdev* cn_tab;
|
||||
|
||||
void
|
||||
init_bootstrap_console()
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue