Searched refs:console_driver (Results 1 – 3 of 3) sorted by relevance
2843 struct tty_driver *console_driver; variable2979 return console_driver; in vt_console_device()3423 console_driver = alloc_tty_driver(MAX_NR_CONSOLES); in vty_init()3424 if (!console_driver) in vty_init()3427 console_driver->name = "tty"; in vty_init()3428 console_driver->name_base = 1; in vty_init()3429 console_driver->major = TTY_MAJOR; in vty_init()3430 console_driver->minor_start = 1; in vty_init()3431 console_driver->type = TTY_DRIVER_TYPE_CONSOLE; in vty_init()3432 console_driver->init_termios = tty_std_termios; in vty_init()[all …]
43 extern struct tty_driver *console_driver;45 #define VT_IS_IN_USE(i) (console_driver->ttys[i] && console_driver->ttys[i]->count)
1827 extern struct tty_driver *console_driver; in tty_lookup_driver()1828 driver = tty_driver_kref_get(console_driver); in tty_lookup_driver()1834 struct tty_driver *console_driver = console_device(index); in tty_lookup_driver() local1835 if (console_driver) { in tty_lookup_driver()1836 driver = tty_driver_kref_get(console_driver); in tty_lookup_driver()