openbench-logic-sniffer: Remove SERIAL_NONBLOCK flag.

All calls in this driver are already explicitly (non)blocking.
This commit is contained in:
Martin Ling 2014-09-21 19:15:36 +01:00 committed by Uwe Hermann
parent d12ef776d3
commit 4ded59eef0
1 changed files with 1 additions and 1 deletions

View File

@ -135,7 +135,7 @@ static GSList *scan(GSList *options)
* have a match.
*/
sr_info("Probing %s.", conn);
if (serial_open(serial, SERIAL_RDWR | SERIAL_NONBLOCK) != SR_OK)
if (serial_open(serial, SERIAL_RDWR) != SR_OK)
return NULL;
ret = SR_OK;