Lines Matching refs:console
42 struct console console; member
200 static void goldfish_tty_console_write(struct console *co, const char *b, in goldfish_tty_console_write()
206 static struct tty_driver *goldfish_tty_console_device(struct console *c, in goldfish_tty_console_device()
213 static int goldfish_tty_console_setup(struct console *co, char *options) in goldfish_tty_console_setup()
385 strcpy(qtty->console.name, "ttyGF"); in goldfish_tty_probe()
386 qtty->console.write = goldfish_tty_console_write; in goldfish_tty_probe()
387 qtty->console.device = goldfish_tty_console_device; in goldfish_tty_probe()
388 qtty->console.setup = goldfish_tty_console_setup; in goldfish_tty_probe()
389 qtty->console.flags = CON_PRINTBUFFER; in goldfish_tty_probe()
390 qtty->console.index = line; in goldfish_tty_probe()
391 register_console(&qtty->console); in goldfish_tty_probe()
417 unregister_console(&qtty->console); in goldfish_tty_remove()
418 tty_unregister_device(goldfish_tty_driver, qtty->console.index); in goldfish_tty_remove()
435 static void gf_early_write(struct console *con, const char *s, unsigned int n) in gf_early_write()