summaryrefslogtreecommitdiffstats
path: root/core_internal.h
diff options
context:
space:
mode:
authorMark Farrugia <mark.farrugia@fiberdyne.com.au>2018-10-07 22:00:10 +1100
committerMark Farrugia <mark.farrugia@fiberdyne.com.au>2018-10-26 17:27:38 +1100
commit0acef1799beace4dd38d41bda9df77e84a5fe398 (patch)
treea7d85c3b49db82b2cd1789b49c8860a562a4805b /core_internal.h
parentf834eb7b0799a4678639d2a9f71c1dc4352469ce (diff)
Remove blocksize from audiopath
This is no longer needed in AVIRT, since it is only actually used for the ADSP Audio Path. Clean up white space, add function documentation, remove out of place debug prints Signed-off-by: Mark Farrugia <mark.farrugia@fiberdyne.com.au>
Diffstat (limited to 'core_internal.h')
-rw-r--r--core_internal.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/core_internal.h b/core_internal.h
index e7bea07..5979a50 100644
--- a/core_internal.h
+++ b/core_internal.h
@@ -23,7 +23,17 @@ struct avirt_core {
bool streams_sealed;
};
+/**
+ * __avirt_configfs_init - Initialise the configfs system
+ * @core: The avirt_core pointer
+ * @return: 0 on success, negative ERRNO on failure
+ */
int __init __avirt_configfs_init(struct avirt_core *core);
+
+/**
+ * __avirt_configfs_exit - Clean up and exit the configfs system
+ * @core: The avirt_core pointer
+ */
void __exit __avirt_configfs_exit(struct avirt_core *core);
/**