提交 18ce1da9 编写于 作者: M Mark Brown

ASoC: wm8770: 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>
上级 f21b6604
...@@ -426,16 +426,16 @@ static int wm8770_hw_params(struct snd_pcm_substream *substream, ...@@ -426,16 +426,16 @@ static int wm8770_hw_params(struct snd_pcm_substream *substream,
wm8770 = snd_soc_codec_get_drvdata(codec); wm8770 = snd_soc_codec_get_drvdata(codec);
iface = 0; iface = 0;
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 |= 0x10; iface |= 0x10;
break; break;
case SNDRV_PCM_FORMAT_S24_LE: case 24:
iface |= 0x20; iface |= 0x20;
break; break;
case SNDRV_PCM_FORMAT_S32_LE: case 32:
iface |= 0x30; iface |= 0x30;
break; break;
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册