]> sigrok.org Git - libsigrok.git/blobdiff - src/hardware/mic-985xx/api.c
Change sr_dev_inst_new() to take no parameters.
[libsigrok.git] / src / hardware / mic-985xx / api.c
index eb5d25d4f2cbec74735604c239c79f3d834490af..5969b1037fcdb4a149640b17ddab0694f12893a6 100644 (file)
@@ -84,9 +84,10 @@ static GSList *mic_scan(const char *conn, const char *serialcomm, int idx)
        sr_info("Found device on port %s.", conn);
 
        /* TODO: Fill in version from protocol response. */
-       if (!(sdi = sr_dev_inst_new(SR_ST_INACTIVE, mic_devs[idx].vendor,
-                                   mic_devs[idx].device, NULL)))
-               goto scan_cleanup;
+       sdi = sr_dev_inst_new();
+       sdi->status = SR_ST_INACTIVE;
+       sdi->vendor = g_strdup(mic_devs[idx].vendor);
+       sdi->model = g_strdup(mic_devs[idx].device);
 
        if (!(devc = g_try_malloc0(sizeof(struct dev_context)))) {
                sr_err("Device context malloc failed.");