diff options
author | Daniel Baluta <daniel.baluta@nxp.com> | 2017-07-14 17:12:17 +0300 |
---|---|---|
committer | Daniel Baluta <daniel.baluta@nxp.com> | 2017-07-14 17:28:15 +0300 |
commit | e72e5142334a66ad52699810a597a2885757431b (patch) | |
tree | 1003c923363d1732fbc357ea648ed3ebb787fcdb /sound | |
parent | 7b95f85ee18f559a26820d3a1b1549c1e2b08c97 (diff) |
MLK-15980: Revert "ASoC: imx-wm8962: Use a lower FLL output rate for S20_3LE and S24_LE formats"
This reverts commit be13ac391d27c925 ("MLK-15101: ASoC: imx-wm8962: Use a lower
FLL output rate for S20_3LE and S24_LE formats").
This breaks recording. We'll have to find a better fix for MLK-15101.
Signed-off-by: Daniel Baluta <daniel.baluta@nxp.com>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/soc/fsl/imx-wm8962.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/fsl/imx-wm8962.c b/sound/soc/fsl/imx-wm8962.c index 964c513c3539..a8ef512c4f37 100644 --- a/sound/soc/fsl/imx-wm8962.c +++ b/sound/soc/fsl/imx-wm8962.c @@ -357,7 +357,7 @@ static int imx_hifi_hw_params(struct snd_pcm_substream *substream, if (sample_format == SNDRV_PCM_FORMAT_S24_LE || sample_format == SNDRV_PCM_FORMAT_S20_3LE) - pll_out = sample_rate * 192; + pll_out = sample_rate * 384; else pll_out = sample_rate * 256; |