Lines Matching refs:lines
2086 * track of serial lines: DTR is dropped when the last close happens.
3298 * @lines: count of lines this driver can handle at most
3305 struct tty_driver *__tty_alloc_driver(unsigned int lines, struct module *owner,
3312 if (!lines || (flags & TTY_DRIVER_UNNUMBERED_NODE && lines > 1))
3321 driver->num = lines;
3326 driver->ttys = kcalloc(lines, sizeof(*driver->ttys),
3328 driver->termios = kcalloc(lines, sizeof(*driver->termios),
3337 driver->ports = kcalloc(lines, sizeof(*driver->ports),
3343 cdevs = lines;