console_driver   1845 drivers/tty/tty_io.c 		extern struct tty_driver *console_driver;
console_driver   1846 drivers/tty/tty_io.c 		driver = tty_driver_kref_get(console_driver);
console_driver   1852 drivers/tty/tty_io.c 		struct tty_driver *console_driver = console_device(index);
console_driver   1853 drivers/tty/tty_io.c 		if (console_driver) {
console_driver   1854 drivers/tty/tty_io.c 			driver = tty_driver_kref_get(console_driver);
console_driver   2905 drivers/tty/vt/vt.c struct tty_driver *console_driver;
console_driver   3024 drivers/tty/vt/vt.c 	return console_driver;
console_driver   3476 drivers/tty/vt/vt.c 	console_driver = alloc_tty_driver(MAX_NR_CONSOLES);
console_driver   3477 drivers/tty/vt/vt.c 	if (!console_driver)
console_driver   3480 drivers/tty/vt/vt.c 	console_driver->name = "tty";
console_driver   3481 drivers/tty/vt/vt.c 	console_driver->name_base = 1;
console_driver   3482 drivers/tty/vt/vt.c 	console_driver->major = TTY_MAJOR;
console_driver   3483 drivers/tty/vt/vt.c 	console_driver->minor_start = 1;
console_driver   3484 drivers/tty/vt/vt.c 	console_driver->type = TTY_DRIVER_TYPE_CONSOLE;
console_driver   3485 drivers/tty/vt/vt.c 	console_driver->init_termios = tty_std_termios;
console_driver   3487 drivers/tty/vt/vt.c 		console_driver->init_termios.c_iflag |= IUTF8;
console_driver   3488 drivers/tty/vt/vt.c 	console_driver->flags = TTY_DRIVER_REAL_RAW | TTY_DRIVER_RESET_TERMIOS;
console_driver   3489 drivers/tty/vt/vt.c 	tty_set_operations(console_driver, &con_ops);
console_driver   3490 drivers/tty/vt/vt.c 	if (tty_register_driver(console_driver))