Home
last modified time | relevance | path

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

/linux-4.1.27/drivers/tty/vt/
Dvt.c2485 struct tty_driver *console_driver; variable
2621 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 …]
Dvt_ioctl.c40 extern struct tty_driver *console_driver;
42 #define VT_IS_IN_USE(i) (console_driver->ttys[i] && console_driver->ttys[i]->count)
/linux-4.1.27/drivers/tty/
Dtty_io.c1995 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() local
2004 if (console_driver) { in tty_lookup_driver()
2005 driver = tty_driver_kref_get(console_driver); in tty_lookup_driver()