mic-985xx: Mark serial read as nonblocking.
This call was already nonblocking since the driver opens the port with the SERIAL_NONBLOCK flag. Partial reads are handled.
This commit is contained in:
parent
e13e354f89
commit
98842e53eb
|
@ -154,7 +154,7 @@ static void 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;
|
||||
|
|
Loading…
Reference in New Issue