center-3xx: Mark serial read call as nonblocking.
This call was already nonblocking because the driver opens the port with the SERIAL_NONBLOCK flag. Partial reads are handled.
This commit is contained in:
parent
d7b269da8f
commit
3582ce8a01
|
@ -170,7 +170,7 @@ static gboolean handle_new_data(struct sr_dev_inst *sdi, int idx)
|
|||
|
||||
/* Try to get as much data as the buffer can hold. */
|
||||
len = SERIAL_BUFSIZE - devc->buflen;
|
||||
len = serial_read(serial, devc->buf + devc->buflen, len);
|
||||
len = serial_read_nonblocking(serial, devc->buf + devc->buflen, len);
|
||||
if (len < 1) {
|
||||
sr_err("Serial port read error: %d.", len);
|
||||
return FALSE;
|
||||
|
|
Loading…
Reference in New Issue