]> sigrok.org Git - libsigrok.git/blobdiff - output/csv.c
output: Introduce output module API wrappers.
[libsigrok.git] / output / csv.c
index 8e012212969caeeb7f348945783ac85865110926..0bec7ae281c4286825eb54f586828bdc2f683f10 100644 (file)
@@ -117,8 +117,8 @@ static int init(struct sr_output *o)
        return SR_OK;
 }
 
-static int receive(struct sr_output *o, const struct sr_dev_inst *sdi,
-               const struct sr_datafeed_packet *packet, GString **out)
+static int receive(struct sr_output *o, const struct sr_datafeed_packet *packet,
+               GString **out)
 {
        const struct sr_datafeed_logic *logic;
        struct context *ctx;
@@ -126,8 +126,6 @@ static int receive(struct sr_output *o, const struct sr_dev_inst *sdi,
        uint64_t i, j;
        gchar *p, c;
 
-       (void)sdi;
-
        *out = NULL;
        if (!o || !o->sdi)
                return SR_ERR_ARG;