Lines Matching defs:console_driver
2990 struct tty_driver *console_driver;
3109 return console_driver;
3544 console_driver = tty_alloc_driver(MAX_NR_CONSOLES, TTY_DRIVER_REAL_RAW |
3546 if (IS_ERR(console_driver))
3549 console_driver->name = "tty";
3550 console_driver->name_base = 1;
3551 console_driver->major = TTY_MAJOR;
3552 console_driver->minor_start = 1;
3553 console_driver->type = TTY_DRIVER_TYPE_CONSOLE;
3554 console_driver->init_termios = tty_std_termios;
3556 console_driver->init_termios.c_iflag |= IUTF8;
3557 tty_set_operations(console_driver, &con_ops);
3558 if (tty_register_driver(console_driver))