Lines Matching refs:lines
2098 * serial lines: DTR is dropped when the last close happens.
3307 * @lines: count of lines this driver can handle at most
3314 struct tty_driver *__tty_alloc_driver(unsigned int lines, struct module *owner,
3321 if (!lines || (flags & TTY_DRIVER_UNNUMBERED_NODE && lines > 1))
3329 driver->num = lines;
3334 driver->ttys = kcalloc(lines, sizeof(*driver->ttys),
3336 driver->termios = kcalloc(lines, sizeof(*driver->termios),
3345 driver->ports = kcalloc(lines, sizeof(*driver->ports),
3351 cdevs = lines;