Lines Matching defs:console_driver
3038 struct tty_driver *console_driver;
3157 return console_driver;
3611 console_driver = alloc_tty_driver(MAX_NR_CONSOLES);
3612 if (!console_driver)
3615 console_driver->name = "tty";
3616 console_driver->name_base = 1;
3617 console_driver->major = TTY_MAJOR;
3618 console_driver->minor_start = 1;
3619 console_driver->type = TTY_DRIVER_TYPE_CONSOLE;
3620 console_driver->init_termios = tty_std_termios;
3622 console_driver->init_termios.c_iflag |= IUTF8;
3623 console_driver->flags = TTY_DRIVER_REAL_RAW | TTY_DRIVER_RESET_TERMIOS;
3624 tty_set_operations(console_driver, &con_ops);
3625 if (tty_register_driver(console_driver))