提交 a4c8261d 编写于 作者: M Mark Brown

ASoC: wm8978: Convert to params_width()

The CODEC doesn't care how data is laid out in memory.
Signed-off-by: NMark Brown <broonie@linaro.org>
Acked-by: NCharles Keepax <ckeepax@opensource.wolfsonmicro.com>
上级 6afdc9a0
...@@ -736,16 +736,16 @@ static int wm8978_hw_params(struct snd_pcm_substream *substream, ...@@ -736,16 +736,16 @@ static int wm8978_hw_params(struct snd_pcm_substream *substream,
return -EINVAL; return -EINVAL;
/* bit size */ /* bit size */
switch (params_format(params)) { switch (params_width(params)) {
case SNDRV_PCM_FORMAT_S16_LE: case 16:
break; break;
case SNDRV_PCM_FORMAT_S20_3LE: case 20:
iface_ctl |= 0x20; iface_ctl |= 0x20;
break; break;
case SNDRV_PCM_FORMAT_S24_LE: case 24:
iface_ctl |= 0x40; iface_ctl |= 0x40;
break; break;
case SNDRV_PCM_FORMAT_S32_LE: case 32:
iface_ctl |= 0x60; iface_ctl |= 0x60;
break; break;
} }
...@@ -817,8 +817,8 @@ static int wm8978_hw_params(struct snd_pcm_substream *substream, ...@@ -817,8 +817,8 @@ static int wm8978_hw_params(struct snd_pcm_substream *substream,
wm8978->sysclk == WM8978_MCLK ? wm8978->sysclk == WM8978_MCLK ?
", consider using PLL" : ""); ", consider using PLL" : "");
dev_dbg(codec->dev, "%s: fmt %d, rate %u, MCLK divisor #%d\n", __func__, dev_dbg(codec->dev, "%s: width %d, rate %u, MCLK divisor #%d\n", __func__,
params_format(params), params_rate(params), best); params_width(params), params_rate(params), best);
/* MCLK divisor mask = 0xe0 */ /* MCLK divisor mask = 0xe0 */
snd_soc_update_bits(codec, WM8978_CLOCKING, 0xe0, best << 5); snd_soc_update_bits(codec, WM8978_CLOCKING, 0xe0, best << 5);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册