Searched refs:console_driver (Results 1 – 3 of 3) sorted by relevance
2485 struct tty_driver *console_driver; variable2621 return console_driver; in vt_console_device()3065 console_driver = alloc_tty_driver(MAX_NR_CONSOLES); in vty_init()3066 if (!console_driver) in vty_init()3069 console_driver->name = "tty"; in vty_init()3070 console_driver->name_base = 1; in vty_init()3071 console_driver->major = TTY_MAJOR; in vty_init()3072 console_driver->minor_start = 1; in vty_init()3073 console_driver->type = TTY_DRIVER_TYPE_CONSOLE; in vty_init()3074 console_driver->init_termios = tty_std_termios; in vty_init()[all …]
40 extern struct tty_driver *console_driver;42 #define VT_IS_IN_USE(i) (console_driver->ttys[i] && console_driver->ttys[i]->count)
1995 extern struct tty_driver *console_driver; in tty_lookup_driver()1996 driver = tty_driver_kref_get(console_driver); in tty_lookup_driver()2003 struct tty_driver *console_driver = console_device(index); in tty_lookup_driver() local2004 if (console_driver) { in tty_lookup_driver()2005 driver = tty_driver_kref_get(console_driver); in tty_lookup_driver()