Searched refs:console_driver (Results 1 – 3 of 3) sorted by relevance
2875 struct tty_driver *console_driver; variable2994 return console_driver; in vt_console_device()3439 console_driver = alloc_tty_driver(MAX_NR_CONSOLES); in vty_init()3440 if (!console_driver) in vty_init()3443 console_driver->name = "tty"; in vty_init()3444 console_driver->name_base = 1; in vty_init()3445 console_driver->major = TTY_MAJOR; in vty_init()3446 console_driver->minor_start = 1; in vty_init()3447 console_driver->type = TTY_DRIVER_TYPE_CONSOLE; in vty_init()3448 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)
1845 extern struct tty_driver *console_driver; in tty_lookup_driver()1846 driver = tty_driver_kref_get(console_driver); in tty_lookup_driver()1852 struct tty_driver *console_driver = console_device(index); in tty_lookup_driver() local1853 if (console_driver) { in tty_lookup_driver()1854 driver = tty_driver_kref_get(console_driver); in tty_lookup_driver()