]> sigrok.org Git - libsigrok.git/blobdiff - src/hardware/cem-dt-885x/api.c
Change sr_dev_inst_new() to take no parameters.
[libsigrok.git] / src / hardware / cem-dt-885x / api.c
index 4cd0ccb6e745986ab9f82b323a64086be708e0f9..252946e330fcf3b075673f5c80c8819feee94008 100644 (file)
@@ -109,9 +109,10 @@ static GSList *scan(GSList *options)
        while (g_get_monotonic_time() - start < MAX_SCAN_TIME) {
                if (serial_read_nonblocking(serial, &c, 1) == 1 && c == 0xa5) {
                        /* Found one. */
-                       if (!(sdi = sr_dev_inst_new(SR_ST_INACTIVE, "CEM",
-                                       "DT-885x", NULL)))
-                               return NULL;
+                       sdi = sr_dev_inst_new();
+                       sdi->status = SR_ST_INACTIVE;
+                       sdi->vendor = g_strdup("CEM");
+                       sdi->model = g_strdup("DT-885x");
 
                        if (!(devc = g_try_malloc0(sizeof(struct dev_context)))) {
                                sr_dbg("Device context malloc failed.");