Searched defs:consdev (Results 1 – 5 of 5) sorted by relevance
15 struct consdev { struct16 int cn_disabled; /* If true use rom I/O routines */17 int cn_screen; /* True iff console is a screen/keyboard */18 dev_t cn_dev; /* major/minor of device */19 struct pmax_fb *cn_fb; /* Frame buffer struct for console screen */20 int (*cn_getc)(); /* kernel getchar interface */21 int (*cn_kbdgetc)(); /* kernel keyboard getchar interface */22 void (*cn_putc)(); /* kernel putchar interface */23 struct tty *cn_tp; /* tty structure for console device */
17 struct consdev { struct18 int (*cn_probe)(); /* probe hardware and fill in consdev info */ argument37 extern struct consdev constab[]; argument
16 struct consdev { struct17 int (*cn_probe)(); /* probe hardware and fill in consdev info */ argument36 extern struct consdev constab[]; argument
20 struct consdev { struct21 int (*cn_probe)(); /* probe hardware and fill in consdev info */ argument40 extern struct consdev constab[]; argument
24 dev_t consdev = (dev_t)NULL; /* initialized by consinit() */ variable