]> sigrok.org Git - libsigrok.git/blobdiff - src/hardware/beaglelogic/api.c
Change sr_dev_inst_new() to take no parameters.
[libsigrok.git] / src / hardware / beaglelogic / api.c
index 9abbbefc972e059b0aeaed04e13518182c789392..910bb843b5919addb45d8bed5704a1f60b8d90d9 100644 (file)
@@ -97,7 +97,10 @@ static GSList *scan(GSList *options)
        if (!g_file_test(BEAGLELOGIC_DEV_NODE, G_FILE_TEST_EXISTS))
                return NULL;
 
-       sdi = sr_dev_inst_new(SR_ST_INACTIVE, NULL, "BeagleLogic", "1.0");
+       sdi = sr_dev_inst_new();
+       sdi->status = SR_ST_INACTIVE;
+       sdi->model = g_strdup("BeagleLogic");
+       sdi->version = g_strdup("1.0");
        sdi->driver = di;
 
        /* Unless explicitly specified, keep max channels to 8 only */