提交 08074dc1 编写于 作者: M Mark Brown

ASoC: tlv320aic23: Convert to params_width()

The CODEC doesn't care how data is laid out in memory.
Signed-off-by: NMark Brown <broonie@linaro.org>
上级 7171511e
...@@ -364,16 +364,16 @@ static int tlv320aic23_hw_params(struct snd_pcm_substream *substream, ...@@ -364,16 +364,16 @@ static int tlv320aic23_hw_params(struct snd_pcm_substream *substream,
iface_reg = snd_soc_read(codec, TLV320AIC23_DIGT_FMT) & ~(0x03 << 2); iface_reg = snd_soc_read(codec, TLV320AIC23_DIGT_FMT) & ~(0x03 << 2);
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_reg |= (0x01 << 2); iface_reg |= (0x01 << 2);
break; break;
case SNDRV_PCM_FORMAT_S24_LE: case 24:
iface_reg |= (0x02 << 2); iface_reg |= (0x02 << 2);
break; break;
case SNDRV_PCM_FORMAT_S32_LE: case 32:
iface_reg |= (0x03 << 2); iface_reg |= (0x03 << 2);
break; break;
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册