aboutsummaryrefslogtreecommitdiffstats
path: root/sound
diff options
context:
space:
mode:
authorMark Brown <broonie@opensource.wolfsonmicro.com>2013-01-17 14:15:59 +0900
committerMark Brown <broonie@opensource.wolfsonmicro.com>2013-01-17 14:36:07 +0900
commitb59e0f82aa350e380142353fbd30706092ba6312 (patch)
tree21fbd76f0ee89a7aaf00a06bc08f98a16f9746bb /sound
parentASoC: wm5110: Correct AEC loopback mask (diff)
downloadlinux-dev-b59e0f82aa350e380142353fbd30706092ba6312.tar.xz
linux-dev-b59e0f82aa350e380142353fbd30706092ba6312.zip
ASoC: arizona: Use actual rather than desired BCLK when calculating LRCLK
Otherwise we'll get the wrong LRCLK if we need to pick a higher BCLK than is required. Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com> Cc: stable@vger.kernel.org
Diffstat (limited to 'sound')
-rw-r--r--sound/soc/codecs/arizona.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/codecs/arizona.c b/sound/soc/codecs/arizona.c
index c3592db994a8..ef62c435848e 100644
--- a/sound/soc/codecs/arizona.c
+++ b/sound/soc/codecs/arizona.c
@@ -685,7 +685,7 @@ static int arizona_hw_params(struct snd_pcm_substream *substream,
}
sr_val = i;
- lrclk = snd_soc_params_to_bclk(params) / params_rate(params);
+ lrclk = rates[bclk] / params_rate(params);
arizona_aif_dbg(dai, "BCLK %dHz LRCLK %dHz\n",
rates[bclk], rates[bclk] / lrclk);