summaryrefslogtreecommitdiffstats
path: root/sound
diff options
context:
space:
mode:
authorKuninori Morimoto2016-03-07 06:09:34 +0100
committerMark Brown2016-03-07 08:41:54 +0100
commit09e59075496517206351cc28226ad7263a1a5c4f (patch)
tree775d4d4ee6579eeb7295a13cb649fff0463b4998 /sound
parentASoC: rsnd: SRC TIMSEL support for Capture (diff)
downloadkernel-qcow2-linux-09e59075496517206351cc28226ad7263a1a5c4f.tar.gz
kernel-qcow2-linux-09e59075496517206351cc28226ad7263a1a5c4f.tar.xz
kernel-qcow2-linux-09e59075496517206351cc28226ad7263a1a5c4f.zip
ASoC: rsnd: CMD TIMSEL support for Capture
CMD.out should use same as SRC.out for TIMSEL settings, but it cares Playback case only. This patch fixup it. 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/adg.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/sound/soc/sh/rcar/adg.c b/sound/soc/sh/rcar/adg.c
index f7e164c89f33..606399de684d 100644
--- a/sound/soc/sh/rcar/adg.c
+++ b/sound/soc/sh/rcar/adg.c
@@ -202,7 +202,10 @@ int rsnd_adg_set_cmd_timsel_gen2(struct rsnd_mod *cmd_mod,
int shift = (id % 2) ? 16 : 0;
u32 mask, val;
- val = rsnd_adg_ssi_ws_timing_gen2(io);
+ rsnd_adg_get_timesel_ratio(priv, io,
+ rsnd_src_get_in_rate(priv, io),
+ rsnd_src_get_out_rate(priv, io),
+ NULL, &val, NULL);
val = val << shift;
mask = 0xffff << shift;