ASoC: uda134x: Convert to params_width()

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

Signed-off-by: Mark Brown <broonie@linaro.org>
This commit is contained in:
Mark Brown 2014-07-31 12:49:26 +01:00
parent 04f630d845
commit aa9ffad68a
1 changed files with 4 additions and 4 deletions

View File

@ -243,14 +243,14 @@ static int uda134x_hw_params(struct snd_pcm_substream *substream,
case SND_SOC_DAIFMT_I2S: case SND_SOC_DAIFMT_I2S:
break; break;
case SND_SOC_DAIFMT_RIGHT_J: case SND_SOC_DAIFMT_RIGHT_J:
switch (params_format(params)) { switch (params_width(params)) {
case SNDRV_PCM_FORMAT_S16_LE: case 16:
hw_params |= (1<<1); hw_params |= (1<<1);
break; break;
case SNDRV_PCM_FORMAT_S18_3LE: case 18:
hw_params |= (1<<2); hw_params |= (1<<2);
break; break;
case SNDRV_PCM_FORMAT_S20_3LE: case 20:
hw_params |= ((1<<2) | (1<<1)); hw_params |= ((1<<2) | (1<<1));
break; break;
default: default: