diff options
-rw-r--r-- | decoder.c | 10 | ||||
-rw-r--r-- | sigrokdecode.h | 6 |
2 files changed, 0 insertions, 16 deletions
@@ -238,10 +238,6 @@ SRD_API int srd_decoder_load(const char *module_name) if (py_attr_as_str(d->py_dec, "license", &(d->license)) != SRD_OK) goto err_out; - /* TODO: Handle inputformats, outputformats. */ - d->inputformats = NULL; - d->outputformats = NULL; - /* Convert class annotation attribute to GSList of **char. */ d->annotations = NULL; if (PyObject_HasAttrString(d->py_dec, "annotations")) { @@ -359,12 +355,6 @@ SRD_API int srd_decoder_unload(struct srd_decoder *dec) g_free(dec->desc); g_free(dec->license); - /* TODO: Free everything in inputformats and outputformats. */ - if (dec->inputformats != NULL) - g_slist_free(dec->inputformats); - if (dec->outputformats != NULL) - g_slist_free(dec->outputformats); - /* The module's Decoder class. */ Py_XDECREF(dec->py_dec); /* The module itself. */ diff --git a/sigrokdecode.h b/sigrokdecode.h index 3f2d3c9..ded00bf 100644 --- a/sigrokdecode.h +++ b/sigrokdecode.h @@ -116,12 +116,6 @@ struct srd_decoder { */ char *license; - /** TODO */ - GSList *inputformats; - - /** TODO */ - GSList *outputformats; - /** List of probes required by this decoder. */ GSList *probes; |