diff options
author | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2013-01-17 14:15:59 +0900 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2013-01-17 14:36:07 +0900 |
commit | b59e0f82aa350e380142353fbd30706092ba6312 (patch) | |
tree | 21fbd76f0ee89a7aaf00a06bc08f98a16f9746bb /sound | |
parent | 7d5cb4f7105e7cf12e58e6df5af0cbdb11060bca (diff) | |
download | linux-b59e0f82aa350e380142353fbd30706092ba6312.tar.bz2 |
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.c | 2 |
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); |