aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Brown <broonie@linaro.org>2014-07-31 07:47:45 -0400
committerMark Brown <broonie@linaro.org>2014-07-31 08:30:14 -0400
commitc665330c1951618d824b7789434b4de843681f07 (patch)
treeab5280a03e9aa5958be229ec1c6d7440d240a6dc
parent00a37032a099572302ae89c893bd5c90b924c537 (diff)
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>
-rw-r--r--sound/soc/codecs/tas5086.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sound/soc/codecs/tas5086.c b/sound/soc/codecs/tas5086.c
index d48491a4a19d..9871cf374055 100644
--- a/sound/soc/codecs/tas5086.c
+++ b/sound/soc/codecs/tas5086.c
@@ -419,14 +419,14 @@ static int tas5086_hw_params(struct snd_pcm_substream *substream,
419 } 419 }
420 420
421 /* ... then add the offset for the sample bit depth. */ 421 /* ... then add the offset for the sample bit depth. */
422 switch (params_format(params)) { 422 switch (params_width(params)) {
423 case SNDRV_PCM_FORMAT_S16_LE: 423 case 16:
424 val += 0; 424 val += 0;
425 break; 425 break;
426 case SNDRV_PCM_FORMAT_S20_3LE: 426 case 20:
427 val += 1; 427 val += 1;
428 break; 428 break;
429 case SNDRV_PCM_FORMAT_S24_3LE: 429 case 24:
430 val += 2; 430 val += 2;
431 break; 431 break;
432 default: 432 default: