]> sigrok.org Git - libsigrok.git/commitdiff
baylibre-acme: Fix vendor/device name.
authorUwe Hermann <redacted>
Tue, 17 Feb 2015 15:10:33 +0000 (16:10 +0100)
committerUwe Hermann <redacted>
Tue, 17 Feb 2015 16:03:41 +0000 (17:03 +0100)
src/hardware/baylibre-acme/api.c

index 999f89fb65b1a339571160d042d5f53025938e7b..fc9706f0a718af169577b0fbe2a28471de872863 100644 (file)
@@ -63,7 +63,8 @@ static GSList *scan(GSList *options)
 
        sdi = g_malloc0(sizeof(struct sr_dev_inst));
        sdi->status = SR_ST_INACTIVE;
-       sdi->model = g_strdup("ACME cape");
+       sdi->vendor = g_strdup("BayLibre");
+       sdi->model = g_strdup("ACME");
        sdi->driver = di;
        sdi->priv = devc;