diff options
author | Kuninori Morimoto <morimoto.kuninori@renesas.com> | 2009-12-28 00:09:11 -0500 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2009-12-30 13:31:09 -0500 |
commit | 142e8174b3c493f40469d3ecee0e404645e9c483 (patch) | |
tree | 851ae927f86e5e2e9370830870a42bcc0ebe5599 /sound/soc/sh | |
parent | 1c418d1f623438147a485db987de296ab372e0f3 (diff) |
ASoC: fsi: Add fsi_get_dai to get snd_soc_dai
Signed-off-by: Kuninori Morimoto <morimoto.kuninori@renesas.com>
Acked-by: Liam Girdwood <lrg@slimlogic.co.uk>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'sound/soc/sh')
-rw-r--r-- | sound/soc/sh/fsi.c | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/sound/soc/sh/fsi.c b/sound/soc/sh/fsi.c index b311a9eaf021..d078151e1de6 100644 --- a/sound/soc/sh/fsi.c +++ b/sound/soc/sh/fsi.c | |||
@@ -210,11 +210,17 @@ static int fsi_is_port_a(struct fsi_priv *fsi) | |||
210 | return fsi->master->base == fsi->base; | 210 | return fsi->master->base == fsi->base; |
211 | } | 211 | } |
212 | 212 | ||
213 | static struct fsi_priv *fsi_get_priv(struct snd_pcm_substream *substream) | 213 | static struct snd_soc_dai *fsi_get_dai(struct snd_pcm_substream *substream) |
214 | { | 214 | { |
215 | struct snd_soc_pcm_runtime *rtd = substream->private_data; | 215 | struct snd_soc_pcm_runtime *rtd = substream->private_data; |
216 | struct snd_soc_dai_link *machine = rtd->dai; | 216 | struct snd_soc_dai_link *machine = rtd->dai; |
217 | struct snd_soc_dai *dai = machine->cpu_dai; | 217 | |
218 | return machine->cpu_dai; | ||
219 | } | ||
220 | |||
221 | static struct fsi_priv *fsi_get_priv(struct snd_pcm_substream *substream) | ||
222 | { | ||
223 | struct snd_soc_dai *dai = fsi_get_dai(substream); | ||
218 | 224 | ||
219 | return dai->private_data; | 225 | return dai->private_data; |
220 | } | 226 | } |