Home
last modified time | relevance | path

Searched refs:closing_wait (Results 1 – 8 of 8) sorted by relevance

/drivers/tty/
A Damiserial.c895 unsigned int close_delay, closing_wait; in get_serial_info() local
899 closing_wait = state->tport.closing_wait; in get_serial_info()
900 if (closing_wait != ASYNC_CLOSING_WAIT_NONE) in get_serial_info()
901 closing_wait = jiffies_to_msecs(closing_wait) / 10; in get_serial_info()
909 ss->closing_wait = closing_wait; in get_serial_info()
921 unsigned int close_delay, closing_wait; in set_serial_info() local
933 closing_wait = ss->closing_wait; in set_serial_info()
934 if (closing_wait != ASYNC_CLOSING_WAIT_NONE) in set_serial_info()
935 closing_wait = msecs_to_jiffies(closing_wait * 10); in set_serial_info()
940 (closing_wait != port->closing_wait) || in set_serial_info()
[all …]
A Dmxser.c969 unsigned int closing_wait, close_delay; in mxser_get_serial_info() local
974 closing_wait = info->port.closing_wait; in mxser_get_serial_info()
975 if (closing_wait != ASYNC_CLOSING_WAIT_NONE) in mxser_get_serial_info()
976 closing_wait = jiffies_to_msecs(closing_wait) / 10; in mxser_get_serial_info()
985 ss->closing_wait = closing_wait; in mxser_get_serial_info()
998 unsigned int old_speed, close_delay, closing_wait; in mxser_set_serial_info() local
1015 closing_wait = ss->closing_wait; in mxser_set_serial_info()
1016 if (closing_wait != ASYNC_CLOSING_WAIT_NONE) in mxser_set_serial_info()
1017 closing_wait = msecs_to_jiffies(closing_wait * 10); in mxser_set_serial_info()
1022 (closing_wait != port->closing_wait) || in mxser_set_serial_info()
[all …]
A Dtty_port.c100 port->closing_wait = (3000 * HZ) / 100; in tty_port_init()
636 if (port->closing_wait != ASYNC_CLOSING_WAIT_NONE) in tty_port_close_start()
637 tty_wait_until_sent(tty, port->closing_wait); in tty_port_close_start()
A Dtty_io.c2824 unsigned short closing_wait; /* time to wait before closing */ member
/drivers/usb/serial/
A Dusb-serial.c443 unsigned int close_delay, closing_wait; in serial_get_serial() local
448 closing_wait = tport->closing_wait; in serial_get_serial()
449 if (closing_wait != ASYNC_CLOSING_WAIT_NONE) in serial_get_serial()
450 closing_wait = jiffies_to_msecs(closing_wait) / 10; in serial_get_serial()
454 ss->closing_wait = closing_wait; in serial_get_serial()
468 unsigned int close_delay, closing_wait; in serial_set_serial() local
472 closing_wait = ss->closing_wait; in serial_set_serial()
473 if (closing_wait != ASYNC_CLOSING_WAIT_NONE) in serial_set_serial()
474 closing_wait = msecs_to_jiffies(closing_wait * 10); in serial_set_serial()
480 closing_wait != tport->closing_wait) { in serial_set_serial()
[all …]
/drivers/staging/greybus/
A Duart.c601 ss->closing_wait = in get_serial_info()
602 gb_tty->port.closing_wait == ASYNC_CLOSING_WAIT_NONE ? in get_serial_info()
604 jiffies_to_msecs(gb_tty->port.closing_wait) / 10; in get_serial_info()
614 unsigned int closing_wait; in set_serial_info() local
619 closing_wait = ss->closing_wait == ASYNC_CLOSING_WAIT_NONE ? in set_serial_info()
621 msecs_to_jiffies(ss->closing_wait * 10); in set_serial_info()
626 (closing_wait != gb_tty->port.closing_wait)) in set_serial_info()
630 gb_tty->port.closing_wait = closing_wait; in set_serial_info()
/drivers/usb/class/
A Dcdc-acm.c978 ss->closing_wait = acm->port.closing_wait == ASYNC_CLOSING_WAIT_NONE ? in get_serial_info()
980 jiffies_to_msecs(acm->port.closing_wait) / 10; in get_serial_info()
988 unsigned int closing_wait, close_delay; in set_serial_info() local
992 closing_wait = ss->closing_wait == ASYNC_CLOSING_WAIT_NONE ? in set_serial_info()
994 msecs_to_jiffies(ss->closing_wait * 10); in set_serial_info()
1000 (closing_wait != acm->port.closing_wait)) in set_serial_info()
1004 acm->port.closing_wait = closing_wait; in set_serial_info()
/drivers/tty/serial/
A Dserial_core.c817 retinfo->closing_wait = port->closing_wait == ASYNC_CLOSING_WAIT_NONE ? in uart_get_info()
819 jiffies_to_msecs(port->closing_wait) / 10; in uart_get_info()
899 unsigned int old_custom_divisor, close_delay, closing_wait; in uart_set_info() local
913 closing_wait = new_info->closing_wait == ASYNC_CLOSING_WAIT_NONE ? in uart_set_info()
915 msecs_to_jiffies(new_info->closing_wait * 10); in uart_set_info()
948 (closing_wait != port->closing_wait) || in uart_set_info()
1002 port->closing_wait = closing_wait; in uart_set_info()
2946 return sprintf(buf, "%u\n", tmp.closing_wait); in closing_wait_show()
3048 static DEVICE_ATTR_RO(closing_wait);

Completed in 33 milliseconds