Searched refs:pty_slave_driver (Results 1 - 1 of 1) sorted by relevance

/linux-4.1.27/drivers/tty/
H A Dpty.c536 struct tty_driver *pty_driver, *pty_slave_driver; legacy_pty_init() local
548 pty_slave_driver = tty_alloc_driver(legacy_count, legacy_pty_init()
552 if (IS_ERR(pty_slave_driver)) legacy_pty_init()
568 pty_driver->other = pty_slave_driver; legacy_pty_init()
571 pty_slave_driver->driver_name = "pty_slave"; legacy_pty_init()
572 pty_slave_driver->name = "ttyp"; legacy_pty_init()
573 pty_slave_driver->major = PTY_SLAVE_MAJOR; legacy_pty_init()
574 pty_slave_driver->minor_start = 0; legacy_pty_init()
575 pty_slave_driver->type = TTY_DRIVER_TYPE_PTY; legacy_pty_init()
576 pty_slave_driver->subtype = PTY_TYPE_SLAVE; legacy_pty_init()
577 pty_slave_driver->init_termios = tty_std_termios; legacy_pty_init()
578 pty_slave_driver->init_termios.c_cflag = B38400 | CS8 | CREAD; legacy_pty_init()
579 pty_slave_driver->init_termios.c_ispeed = 38400; legacy_pty_init()
580 pty_slave_driver->init_termios.c_ospeed = 38400; legacy_pty_init()
581 pty_slave_driver->other = pty_driver; legacy_pty_init()
582 tty_set_operations(pty_slave_driver, &slave_pty_ops_bsd); legacy_pty_init()
586 if (tty_register_driver(pty_slave_driver)) legacy_pty_init()

Completed in 85 milliseconds