|
@@ -612,8 +612,15 @@ static struct snd_compr_ops soc_compr_dyn_ops = {
|
|
|
.get_codec_caps = soc_compr_get_codec_caps
|
|
|
};
|
|
|
|
|
|
-/* create a new compress */
|
|
|
-int soc_new_compress(struct snd_soc_pcm_runtime *rtd, int num)
|
|
|
+/**
|
|
|
+ * snd_soc_new_compress - create a new compress.
|
|
|
+ *
|
|
|
+ * @rtd: The runtime for which we will create compress
|
|
|
+ * @num: the device index number (zero based - shared with normal PCMs)
|
|
|
+ *
|
|
|
+ * Return: 0 for success, else error.
|
|
|
+ */
|
|
|
+int snd_soc_new_compress(struct snd_soc_pcm_runtime *rtd, int num)
|
|
|
{
|
|
|
struct snd_soc_codec *codec = rtd->codec;
|
|
|
struct snd_soc_platform *platform = rtd->platform;
|
|
@@ -703,3 +710,4 @@ compr_err:
|
|
|
kfree(compr);
|
|
|
return ret;
|
|
|
}
|
|
|
+EXPORT_SYMBOL_GPL(snd_soc_new_compress);
|