]> sigrok.org Git - libsigrok.git/blobdiff - src/hardware/center-3xx/api.c
Removal of sdi->index, step 4: fix trivial sr_dev_inst_new() calls
[libsigrok.git] / src / hardware / center-3xx / api.c
index 9a43323da3d8a9f451b7b49e001e20005517c088..9226c5a094c269a8f0ca5e8d1857bbdf3dfab167 100644 (file)
@@ -76,7 +76,7 @@ static GSList *center_scan(const char *conn, const char *serialcomm, int idx)
        if (!(serial = sr_serial_dev_inst_new(conn, serialcomm)))
                return NULL;
 
-       if (serial_open(serial, SERIAL_RDWR | SERIAL_NONBLOCK) != SR_OK)
+       if (serial_open(serial, SERIAL_RDWR) != SR_OK)
                return NULL;
 
        drvc = center_devs[idx].di->priv;
@@ -85,7 +85,7 @@ static GSList *center_scan(const char *conn, const char *serialcomm, int idx)
 
        sr_info("Found device on port %s.", conn);
 
-       if (!(sdi = sr_dev_inst_new(0, SR_ST_INACTIVE, center_devs[idx].vendor,
+       if (!(sdi = sr_dev_inst_new(SR_ST_INACTIVE, center_devs[idx].vendor,
                                    center_devs[idx].device, NULL)))
                goto scan_cleanup;