提交 1f9ffcb0 编写于 作者: M Mark Brown

ASoC: sta529: Convert to params_width()

The CODEC doesn't care how data is laid out in memory.
Signed-off-by: NMark Brown <broonie@linaro.org>
上级 737e0f89
...@@ -197,16 +197,16 @@ static int sta529_hw_params(struct snd_pcm_substream *substream, ...@@ -197,16 +197,16 @@ static int sta529_hw_params(struct snd_pcm_substream *substream,
int pdata, play_freq_val, record_freq_val; int pdata, play_freq_val, record_freq_val;
int bclk_to_fs_ratio; int bclk_to_fs_ratio;
switch (params_format(params)) { switch (params_width(params)) {
case SNDRV_PCM_FORMAT_S16_LE: case 16:
pdata = 1; pdata = 1;
bclk_to_fs_ratio = 0; bclk_to_fs_ratio = 0;
break; break;
case SNDRV_PCM_FORMAT_S24_LE: case 24:
pdata = 2; pdata = 2;
bclk_to_fs_ratio = 1; bclk_to_fs_ratio = 1;
break; break;
case SNDRV_PCM_FORMAT_S32_LE: case 32:
pdata = 3; pdata = 3;
bclk_to_fs_ratio = 2; bclk_to_fs_ratio = 2;
break; break;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册