aboutsummaryrefslogtreecommitdiffstats
path: root/include/sound
diff options
context:
space:
mode:
authorFabio Estevam <fabio.estevam@freescale.com>2013-08-29 10:32:13 -0300
committerMark Brown <broonie@linaro.org>2013-09-01 16:29:27 +0100
commitd6bead020d8f8bcaca5cdcb035250c44b21c93e7 (patch)
treecca1acff1246987d91bffe6906e82f0d38136e6b /include/sound
parentASoC: fsl_spdif: Staticse non-exported symbols (diff)
downloadlinux-dev-d6bead020d8f8bcaca5cdcb035250c44b21c93e7.tar.xz
linux-dev-d6bead020d8f8bcaca5cdcb035250c44b21c93e7.zip
ASoC: soc-pcm: Allow to specify unidirectional dai_link
Add 'playback_only' and 'capture_only' fields that can be used for specifying that a dai_link has a unidirectional capability. The motivation for this is for the cases of systems, such as Freescale MX28, that has two unidirectional DAIs. Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com> Signed-off-by: Mark Brown <broonie@linaro.org>
Diffstat (limited to 'include/sound')
-rw-r--r--include/sound/soc.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/sound/soc.h b/include/sound/soc.h
index c0ac3bc7b7f4..65414e82c762 100644
--- a/include/sound/soc.h
+++ b/include/sound/soc.h
@@ -936,6 +936,10 @@ struct snd_soc_dai_link {
/* machine stream operations */
const struct snd_soc_ops *ops;
const struct snd_soc_compr_ops *compr_ops;
+
+ /* For unidirectional dai links */
+ bool playback_only;
+ bool capture_only;
};
struct snd_soc_codec_conf {