summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--decoder.c2
-rw-r--r--instance.c3
2 files changed, 5 insertions, 0 deletions
diff --git a/decoder.c b/decoder.c
index 9c57b1c..64292bc 100644
--- a/decoder.c
+++ b/decoder.c
@@ -594,6 +594,8 @@ static int check_method(PyObject *py_dec, const char *mod_name,
* @param d The decoder to use. Must not be NULL.
*
* @return The API version of the decoder, or 0 upon errors.
+ *
+ * @private
*/
SRD_PRIV long srd_decoder_apiver(const struct srd_decoder *d)
{
diff --git a/instance.c b/instance.c
index 61e0ea8..b716f2f 100644
--- a/instance.c
+++ b/instance.c
@@ -676,6 +676,7 @@ SRD_API int srd_inst_initial_pins_set_all(struct srd_decoder_inst *di, GArray *i
return SRD_OK;
}
+/** @private */
SRD_PRIV void oldpins_array_free(struct srd_decoder_inst *di)
{
if (!di)
@@ -783,6 +784,7 @@ static gboolean sample_matches(uint8_t old_sample, uint8_t sample, struct srd_te
return FALSE;
}
+/** @private */
SRD_PRIV void match_array_free(struct srd_decoder_inst *di)
{
if (!di || !di->match_array)
@@ -792,6 +794,7 @@ SRD_PRIV void match_array_free(struct srd_decoder_inst *di)
di->match_array = NULL;
}
+/** @private */
SRD_PRIV void condition_list_free(struct srd_decoder_inst *di)
{
GSList *l, *ll;