ASoC: wm8904: Convert to params_width()

The CODEC doesn't care how data is laid out in memory.

Signed-off-by: Mark Brown <broonie@linaro.org>
Acked-by: Charles Keepax <ckeepax@opensource.wolfsonmicro.com>
This commit is contained in:
Mark Brown 2014-07-31 12:53:00 +01:00
parent 6139ea270d
commit 2f44b0437a
1 changed files with 5 additions and 5 deletions

View File

@ -1290,16 +1290,16 @@ static int wm8904_hw_params(struct snd_pcm_substream *substream,
wm8904->bclk = snd_soc_params_to_bclk(params);
}
switch (params_format(params)) {
case SNDRV_PCM_FORMAT_S16_LE:
switch (params_width(params)) {
case 16:
break;
case SNDRV_PCM_FORMAT_S20_3LE:
case 20:
aif1 |= 0x40;
break;
case SNDRV_PCM_FORMAT_S24_LE:
case 24:
aif1 |= 0x80;
break;
case SNDRV_PCM_FORMAT_S32_LE:
case 32:
aif1 |= 0xc0;
break;
default: