]> sigrok.org Git - libsigrok.git/blobdiff - output/chronovu_la8.c
gnuplot: Remove unnecessary array of probe names.
[libsigrok.git] / output / chronovu_la8.c
index 625d839be1b1e8a48e6b0657004eeb44b21d907a..3a8aee4591d85cd313c3c471f55c461500e6c023 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * This file is part of the sigrok project.
+ * This file is part of the libsigrok project.
  *
  * Copyright (C) 2011 Uwe Hermann <uwe@hermann-uwe.de>
  *
@@ -36,7 +36,6 @@
 struct context {
        unsigned int num_enabled_probes;
        unsigned int unitsize;
-       char *probelist[SR_MAX_NUM_PROBES + 1];
        uint64_t trigger_point;
        uint64_t samplerate;
 };
@@ -118,14 +117,13 @@ static int init(struct sr_output *o)
 
        o->internal = ctx;
 
-       /* Get the probe names and the unitsize. */
+       /* Get the unitsize. */
        for (l = o->sdi->probes; l; l = l->next) {
                probe = l->data;
                if (!probe->enabled)
                        continue;
-               ctx->probelist[ctx->num_enabled_probes++] = probe->name;
+               ctx->num_enabled_probes++;
        }
-       ctx->probelist[ctx->num_enabled_probes] = 0;
        ctx->unitsize = (ctx->num_enabled_probes + 7) / 8;
 
        if (sr_dev_has_option(o->sdi, SR_CONF_SAMPLERATE)) {