提交 2f44b043 编写于 作者: M Mark Brown

ASoC: wm8904: 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>
上级 6139ea27
...@@ -1290,16 +1290,16 @@ static int wm8904_hw_params(struct snd_pcm_substream *substream, ...@@ -1290,16 +1290,16 @@ static int wm8904_hw_params(struct snd_pcm_substream *substream,
wm8904->bclk = snd_soc_params_to_bclk(params); wm8904->bclk = snd_soc_params_to_bclk(params);
} }
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:
aif1 |= 0x40; aif1 |= 0x40;
break; break;
case SNDRV_PCM_FORMAT_S24_LE: case 24:
aif1 |= 0x80; aif1 |= 0x80;
break; break;
case SNDRV_PCM_FORMAT_S32_LE: case 32:
aif1 |= 0xc0; aif1 |= 0xc0;
break; break;
default: default:
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册