Lines Matching refs:console
51 struct console console; member
219 static void goldfish_tty_console_write(struct console *co, const char *b, in goldfish_tty_console_write()
225 static struct tty_driver *goldfish_tty_console_device(struct console *c, in goldfish_tty_console_device()
232 static int goldfish_tty_console_setup(struct console *co, char *options) in goldfish_tty_console_setup()
405 strcpy(qtty->console.name, "ttyGF"); in goldfish_tty_probe()
406 qtty->console.write = goldfish_tty_console_write; in goldfish_tty_probe()
407 qtty->console.device = goldfish_tty_console_device; in goldfish_tty_probe()
408 qtty->console.setup = goldfish_tty_console_setup; in goldfish_tty_probe()
409 qtty->console.flags = CON_PRINTBUFFER; in goldfish_tty_probe()
410 qtty->console.index = line; in goldfish_tty_probe()
411 register_console(&qtty->console); in goldfish_tty_probe()
436 unregister_console(&qtty->console); in goldfish_tty_remove()
437 tty_unregister_device(goldfish_tty_driver, qtty->console.index); in goldfish_tty_remove()
454 static void gf_early_write(struct console *con, const char *s, unsigned int n) in gf_early_write()