Home
last modified time | relevance | path

Searched refs:console_driver (Results 1 – 3 of 3) sorted by relevance

/drivers/tty/vt/
Dvt.c2875 struct tty_driver *console_driver; variable
2994 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 …]
Dvt_ioctl.c43 extern struct tty_driver *console_driver;
45 #define VT_IS_IN_USE(i) (console_driver->ttys[i] && console_driver->ttys[i]->count)
/drivers/tty/
Dtty_io.c1845 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() local
1853 if (console_driver) { in tty_lookup_driver()
1854 driver = tty_driver_kref_get(console_driver); in tty_lookup_driver()