/Linux-v4.19/drivers/usb/serial/ |
D | usb_wwan.c | 145 tmp.closing_wait = port->port.closing_wait == ASYNC_CLOSING_WAIT_NONE ? in get_serial_info() 147 port->port.closing_wait / 10; in get_serial_info() 158 unsigned int closing_wait, close_delay; in set_serial_info() local 165 closing_wait = new_serial.closing_wait == ASYNC_CLOSING_WAIT_NONE ? in set_serial_info() 166 ASYNC_CLOSING_WAIT_NONE : new_serial.closing_wait * 10; in set_serial_info() 172 (closing_wait != port->port.closing_wait)) in set_serial_info() 178 port->port.closing_wait = closing_wait; in set_serial_info()
|
D | ti_usb_3410_5052.c | 352 static int closing_wait = TI_DEFAULT_CLOSING_WAIT; variable 505 module_param(closing_wait, int, S_IRUGO | S_IWUSR); 506 MODULE_PARM_DESC(closing_wait, 616 port->port.closing_wait = msecs_to_jiffies(10 * closing_wait); in ti_port_probe() 1427 cwait = port->port.closing_wait; in ti_get_serial_info() 1438 ret_serial.closing_wait = cwait; in ti_get_serial_info() 1456 cwait = new_serial.closing_wait; in ti_set_serial_info() 1458 cwait = msecs_to_jiffies(10 * new_serial.closing_wait); in ti_set_serial_info() 1460 tport->tp_port->port.closing_wait = cwait; in ti_set_serial_info()
|
D | io_ti.c | 214 static int closing_wait = EDGE_CLOSING_WAIT; variable 2446 cwait = edge_port->port->port.closing_wait; in get_serial_info() 2459 tmp.closing_wait = cwait; in get_serial_info() 2641 port->port.closing_wait = msecs_to_jiffies(closing_wait * 10); in edge_port_probe() 2811 module_param(closing_wait, int, S_IRUGO | S_IWUSR); 2812 MODULE_PARM_DESC(closing_wait, "Maximum wait for data to drain, in .01 secs");
|
D | opticon.c | 346 tmp.closing_wait = 30*HZ; in get_serial_info()
|
D | ssu100.c | 346 tmp.closing_wait = 30*HZ; in get_serial_info()
|
D | whiteheat.c | 462 serstruct.closing_wait = CLOSING_DELAY; in whiteheat_ioctl()
|
D | quatech2.c | 468 tmp.closing_wait = 30*HZ; in get_serial_info()
|
D | mos7720.c | 1848 tmp.closing_wait = 30*HZ; in get_serial_info()
|
D | mos7840.c | 1951 tmp.closing_wait = 30 * HZ; in mos7840_get_serial_info()
|
/Linux-v4.19/drivers/staging/greybus/ |
D | uart.c | 630 tmp.closing_wait = in get_serial_info() 631 gb_tty->port.closing_wait == ASYNC_CLOSING_WAIT_NONE ? in get_serial_info() 632 ASYNC_CLOSING_WAIT_NONE : gb_tty->port.closing_wait / 10; in get_serial_info() 643 unsigned int closing_wait; in set_serial_info() local 651 closing_wait = new_serial.closing_wait == ASYNC_CLOSING_WAIT_NONE ? in set_serial_info() 652 ASYNC_CLOSING_WAIT_NONE : new_serial.closing_wait * 10; in set_serial_info() 657 (closing_wait != gb_tty->port.closing_wait)) in set_serial_info() 663 gb_tty->port.closing_wait = closing_wait; in set_serial_info()
|
/Linux-v4.19/drivers/tty/ |
D | rocket.h | 22 int closing_wait; member
|
D | tty_port.c | 70 port->closing_wait = (3000 * HZ) / 100; in tty_port_init() 597 if (port->closing_wait != ASYNC_CLOSING_WAIT_NONE) in tty_port_close_start() 598 tty_wait_until_sent(tty, port->closing_wait); in tty_port_close_start()
|
D | isicom.c | 1109 (newinfo.closing_wait != port->port.closing_wait) || in isicom_set_serial_info() 1119 port->port.closing_wait = newinfo.closing_wait; in isicom_set_serial_info() 1147 out_info.closing_wait = port->port.closing_wait; in isicom_get_serial_info() 1604 tport->closing_wait = 3000 * HZ/100; in isicom_probe()
|
D | amiserial.c | 1012 tmp.closing_wait = state->tport.closing_wait; in get_serial_info() 1070 port->closing_wait = new_serial.closing_wait * HZ/100; in set_serial_info()
|
D | cyclades.c | 2272 .closing_wait = info->port.closing_wait, in cy_get_serial_info() 2321 info->port.closing_wait = new_serial.closing_wait * HZ / 100; in cy_set_serial_info() 2696 info->port.closing_wait = (unsigned short)arg * HZ / 100; in cy_ioctl() 2699 ret_val = info->port.closing_wait / (HZ / 100); in cy_ioctl() 3077 info->port.closing_wait = CLOSING_WAIT_DELAY; in cy_init_card()
|
D | mxser.c | 1221 .closing_wait = info->port.closing_wait, in mxser_get_serial_info() 1266 port->closing_wait = new_serial.closing_wait * HZ / 100; in mxser_set_serial_info() 2400 info->port.closing_wait = 30 * HZ; in mxser_initbrd()
|
D | rocket.c | 1172 tmp.closing_wait = info->port.closing_wait; in get_config() 1209 info->port.closing_wait = new_serial.closing_wait; in set_config()
|
/Linux-v4.19/include/uapi/linux/ |
D | serial.h | 32 unsigned short closing_wait; /* time to wait before closing */ member
|
/Linux-v4.19/drivers/usb/class/ |
D | cdc-acm.c | 895 tmp.closing_wait = acm->port.closing_wait == ASYNC_CLOSING_WAIT_NONE ? in get_serial_info() 897 acm->port.closing_wait / 10; in get_serial_info() 909 unsigned int closing_wait, close_delay; in set_serial_info() local 916 closing_wait = new_serial.closing_wait == ASYNC_CLOSING_WAIT_NONE ? in set_serial_info() 917 ASYNC_CLOSING_WAIT_NONE : new_serial.closing_wait * 10; in set_serial_info() 923 (closing_wait != acm->port.closing_wait)) in set_serial_info() 929 acm->port.closing_wait = closing_wait; in set_serial_info()
|
/Linux-v4.19/drivers/tty/serial/ |
D | serial_core.c | 766 retinfo->closing_wait = port->closing_wait == ASYNC_CLOSING_WAIT_NONE ? in uart_get_info() 768 jiffies_to_msecs(port->closing_wait) / 10; in uart_get_info() 800 unsigned int change_irq, change_port, closing_wait; in uart_set_info() local 814 closing_wait = new_info->closing_wait == ASYNC_CLOSING_WAIT_NONE ? in uart_set_info() 816 msecs_to_jiffies(new_info->closing_wait * 10); in uart_set_info() 844 (closing_wait != port->closing_wait) || in uart_set_info() 958 port->closing_wait = closing_wait; in uart_set_info() 2624 return snprintf(buf, PAGE_SIZE, "%d\n", tmp.closing_wait); in uart_get_attr_closing_wait() 2675 static DEVICE_ATTR(closing_wait, S_IRUSR | S_IRGRP, uart_get_attr_closing_wait, NULL);
|
/Linux-v4.19/drivers/net/wan/ |
D | z85230.h | 351 unsigned short closing_wait; member
|
/Linux-v4.19/Documentation/ABI/testing/ |
D | sysfs-tty | 95 What: /sys/class/tty/ttyS0/closing_wait
|
/Linux-v4.19/include/linux/ |
D | tty.h | 247 unsigned int closing_wait; /* Delay for output */ member
|
/Linux-v4.19/fs/ |
D | compat_ioctl.c | 577 unsigned short closing_wait; /* time to wait before closing */ member
|
/Linux-v4.19/Documentation/serial/ |
D | moxa-smartio | 466 closing_wait set the amount of time(in 1/100 of a second) that the
|