aboutsummaryrefslogtreecommitdiffstats
path: root/sound
diff options
context:
space:
mode:
authorKuninori Morimoto <kuninori.morimoto.gx@renesas.com>2015-01-15 03:09:44 -0500
committerMark Brown <broonie@kernel.org>2015-01-15 06:37:49 -0500
commit8048b91ffca872d704b7e7fb404a121955ce8d8e (patch)
treef5256c705846c6d18562e8a2669fe7b59dd535dd /sound
parent1ceeab2679069738fc73da6d8256014d3e195dab (diff)
ASoC: rsnd: tidyup DVC/SRC/SSI order
Current R-Car sound driver calls SRC -> SSI -> DVC functions, but, it should be DVC -> SRC -> SSI. Otherwise, SSI (= interface of codec) will have underrun error when playback. Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound')
-rw-r--r--sound/soc/sh/rcar/rsnd.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/soc/sh/rcar/rsnd.h b/sound/soc/sh/rcar/rsnd.h
index 11a1c412f1f1..b57d8ace012a 100644
--- a/sound/soc/sh/rcar/rsnd.h
+++ b/sound/soc/sh/rcar/rsnd.h
@@ -190,9 +190,9 @@ void rsnd_dma_quit(struct rsnd_priv *priv,
190 * R-Car sound mod 190 * R-Car sound mod
191 */ 191 */
192enum rsnd_mod_type { 192enum rsnd_mod_type {
193 RSND_MOD_SRC = 0, 193 RSND_MOD_DVC = 0,
194 RSND_MOD_SRC,
194 RSND_MOD_SSI, 195 RSND_MOD_SSI,
195 RSND_MOD_DVC,
196 RSND_MOD_MAX, 196 RSND_MOD_MAX,
197}; 197};
198 198