]> sigrok.org Git - libsigrok.git/commitdiff
simplify code for unused features
authorBert Vermeulen <redacted>
Sun, 18 Apr 2010 17:57:13 +0000 (10:57 -0700)
committerBert Vermeulen <redacted>
Sun, 18 Apr 2010 17:57:13 +0000 (10:57 -0700)
output/output_binary.c

index e8e25e7bedeeef3b1f3abedac52dfb9bb0b93a03..53240eebf8a80da4e471c423f1f771b7a0b12b56 100644 (file)
 #include <sigrok.h>
 #include "config.h"
 
-static int init(struct output *o)
-{
-       /* Prevent compiler warnings. */
-       o = o;
-
-       /* Nothing so far, but we might want to add stuff here later. */
-       return 0;
-}
 
 static int event(struct output *o, int event_type, char **data_out,
                 uint64_t *length_out)
 {
-       char *outbuf;
-       int outlen = 1; /* FIXME */
 
        /* Prevent compiler warnings. */
        o = o;
        event_type = event_type;
+       data_out = data_out;
 
        switch (event_type) {
        case DF_TRIGGER:
                break;
        case DF_END:
-               outbuf = calloc(1, outlen); /* FIXME */
-               if (outbuf == NULL)
-                       return SIGROK_ERR_MALLOC;
-               *data_out = outbuf;
-               *length_out = outlen;
+               *length_out = 0;
                break;
        }
 
@@ -84,7 +71,7 @@ static int data(struct output *o, char *data_in, uint64_t length_in,
 struct output_format output_binary = {
        "binary",
        "Raw binary",
-       init,
+       NULL,
        data,
        event,
 };