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

ASoC: rt5631: Convert to params_width()

The CODEC doesn't care how data is laid out in memory.
Signed-off-by: NMark Brown <broonie@linaro.org>
上级 1ae1f3a2
...@@ -1370,16 +1370,16 @@ static int rt5631_hifi_pcm_params(struct snd_pcm_substream *substream, ...@@ -1370,16 +1370,16 @@ static int rt5631_hifi_pcm_params(struct snd_pcm_substream *substream,
return coeff; return coeff;
} }
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 |= RT5631_SDP_I2S_DL_20; iface |= RT5631_SDP_I2S_DL_20;
break; break;
case SNDRV_PCM_FORMAT_S24_LE: case 24:
iface |= RT5631_SDP_I2S_DL_24; iface |= RT5631_SDP_I2S_DL_24;
break; break;
case SNDRV_PCM_FORMAT_S8: case 8:
iface |= RT5631_SDP_I2S_DL_8; iface |= RT5631_SDP_I2S_DL_8;
break; break;
default: default:
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册