Home
last modified time | relevance | path

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

/linux-4.1.27/drivers/usb/serial/
Dio_edgeport.c1104 int firsthalf; in edge_write() local
1138 firsthalf = min(bytesleft, copySize); in edge_write()
1140 firsthalf, bytesleft); in edge_write()
1143 memcpy(&fifo->fifo[fifo->head], data, firsthalf); in edge_write()
1144 usb_serial_debug_data(&port->dev, __func__, firsthalf, &fifo->fifo[fifo->head]); in edge_write()
1147 fifo->head += firsthalf; in edge_write()
1148 fifo->count += firsthalf; in edge_write()
1154 secondhalf = copySize-firsthalf; in edge_write()
1158 memcpy(&fifo->fifo[fifo->head], &data[firsthalf], secondhalf); in edge_write()
1204 int firsthalf; in send_more_port_data() local
[all …]