ASoC: tas5086: 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:
parent
00a37032a0
commit
c665330c19
1 changed files with 4 additions and 4 deletions
|
@ -419,14 +419,14 @@ static int tas5086_hw_params(struct snd_pcm_substream *substream,
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ... then add the offset for the sample bit depth. */
|
/* ... then add the offset for the sample bit depth. */
|
||||||
switch (params_format(params)) {
|
switch (params_width(params)) {
|
||||||
case SNDRV_PCM_FORMAT_S16_LE:
|
case 16:
|
||||||
val += 0;
|
val += 0;
|
||||||
break;
|
break;
|
||||||
case SNDRV_PCM_FORMAT_S20_3LE:
|
case 20:
|
||||||
val += 1;
|
val += 1;
|
||||||
break;
|
break;
|
||||||
case SNDRV_PCM_FORMAT_S24_3LE:
|
case 24:
|
||||||
val += 2;
|
val += 2;
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
|
|
Loading…
Add table
Reference in a new issue