Searched refs:console_driver (Results 1 – 3 of 3) sorted by relevance
2430 struct tty_driver *console_driver; variable2533 return console_driver; in vt_console_device()2940 console_driver = alloc_tty_driver(MAX_NR_CONSOLES); in vty_init()2941 if (!console_driver) in vty_init()2943 console_driver->owner = THIS_MODULE; in vty_init()2944 console_driver->name = "tty"; in vty_init()2945 console_driver->name_base = 1; in vty_init()2946 console_driver->major = TTY_MAJOR; in vty_init()2947 console_driver->minor_start = 1; in vty_init()2948 console_driver->type = TTY_DRIVER_TYPE_CONSOLE; in vty_init()[all …]
39 extern struct tty_driver *console_driver;41 #define VT_IS_IN_USE(i) (console_driver->ttys[i] && console_driver->ttys[i]->count)
1788 extern struct tty_driver *console_driver; in __tty_open()1789 driver = tty_driver_kref_get(console_driver); in __tty_open()1796 struct tty_driver *console_driver = console_device(&index); in __tty_open() local1797 if (console_driver) { in __tty_open()1798 driver = tty_driver_kref_get(console_driver); in __tty_open()