aboutsummaryrefslogtreecommitdiffstats
path: root/sound/soc/sh
diff options
context:
space:
mode:
authorKuninori Morimoto <kuninori.morimoto.gx@renesas.com>2015-11-30 03:51:52 -0500
committerMark Brown <broonie@kernel.org>2015-11-30 13:11:23 -0500
commit95e6b0ddb002e0dc89fef99b31685197da2eca9e (patch)
treee9277b90a2df406ccb84fefd4bd1992fb2d0bb73 /sound/soc/sh
parent475a361a6f2c7c690fd59a8f5224615e781cc3bd (diff)
ASoC: rsnd: mix: add rsnd_mix_halt()
Based on datasheet process Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/sh')
-rw-r--r--sound/soc/sh/rcar/mix.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/sound/soc/sh/rcar/mix.c b/sound/soc/sh/rcar/mix.c
index b2f22bd7e3a9..b34957ab75b9 100644
--- a/sound/soc/sh/rcar/mix.c
+++ b/sound/soc/sh/rcar/mix.c
@@ -30,6 +30,12 @@ static void rsnd_mix_activation(struct rsnd_mod *mod)
30 rsnd_mod_write(mod, MIX_SWRSR, 1); 30 rsnd_mod_write(mod, MIX_SWRSR, 1);
31} 31}
32 32
33static void rsnd_mix_halt(struct rsnd_mod *mod)
34{
35 rsnd_mod_write(mod, MIX_MIXIR, 1);
36 rsnd_mod_write(mod, MIX_SWRSR, 0);
37}
38
33static void rsnd_mix_volume_parameter(struct rsnd_dai_stream *io, 39static void rsnd_mix_volume_parameter(struct rsnd_dai_stream *io,
34 struct rsnd_mod *mod) 40 struct rsnd_mod *mod)
35{ 41{
@@ -96,6 +102,8 @@ static int rsnd_mix_quit(struct rsnd_mod *mod,
96 struct rsnd_dai_stream *io, 102 struct rsnd_dai_stream *io,
97 struct rsnd_priv *priv) 103 struct rsnd_priv *priv)
98{ 104{
105 rsnd_mix_halt(mod);
106
99 rsnd_mod_power_off(mod); 107 rsnd_mod_power_off(mod);
100 108
101 return 0; 109 return 0;