Home
last modified time | relevance | path

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

/linux-4.4.14/drivers/tty/vt/
Dvt.c2499 struct tty_driver *console_driver; variable
2635 return console_driver; in vt_console_device()
3079 console_driver = alloc_tty_driver(MAX_NR_CONSOLES); in vty_init()
3080 if (!console_driver) in vty_init()
3083 console_driver->name = "tty"; in vty_init()
3084 console_driver->name_base = 1; in vty_init()
3085 console_driver->major = TTY_MAJOR; in vty_init()
3086 console_driver->minor_start = 1; in vty_init()
3087 console_driver->type = TTY_DRIVER_TYPE_CONSOLE; in vty_init()
3088 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.4.14/drivers/tty/
Dtty_io.c1981 extern struct tty_driver *console_driver; in tty_lookup_driver()
1982 driver = tty_driver_kref_get(console_driver); in tty_lookup_driver()
1989 struct tty_driver *console_driver = console_device(index); in tty_lookup_driver() local
1990 if (console_driver) { in tty_lookup_driver()
1991 driver = tty_driver_kref_get(console_driver); in tty_lookup_driver()