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

ASoC: wm8983: 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>
上级 a4c8261d
...@@ -719,22 +719,22 @@ static int wm8983_hw_params(struct snd_pcm_substream *substream, ...@@ -719,22 +719,22 @@ static int wm8983_hw_params(struct snd_pcm_substream *substream,
wm8983->bclk = ret; wm8983->bclk = ret;
switch (params_format(params)) { switch (params_width(params)) {
case SNDRV_PCM_FORMAT_S16_LE: case 16:
blen = 0x0; blen = 0x0;
break; break;
case SNDRV_PCM_FORMAT_S20_3LE: case 20:
blen = 0x1; blen = 0x1;
break; break;
case SNDRV_PCM_FORMAT_S24_LE: case 24:
blen = 0x2; blen = 0x2;
break; break;
case SNDRV_PCM_FORMAT_S32_LE: case 32:
blen = 0x3; blen = 0x3;
break; break;
default: default:
dev_err(dai->dev, "Unsupported word length %u\n", dev_err(dai->dev, "Unsupported word length %u\n",
params_format(params)); params_width(params));
return -EINVAL; return -EINVAL;
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册