diff options
author | Mark Brown <broonie@linaro.org> | 2014-07-31 07:53:08 -0400 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2014-07-31 13:47:37 -0400 |
commit | 74b24c3866f4cbd129a21651a1e2dfe81a10b268 (patch) | |
tree | a01cfc78eb97eedb79cce5f8c3154cbd5636f612 /sound | |
parent | 2f44b0437aae1c5badb63a18fda0d95e51591e23 (diff) |
ASoC: wm8940: 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>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/soc/codecs/wm8940.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sound/soc/codecs/wm8940.c b/sound/soc/codecs/wm8940.c index fc6eec9ad66b..52011043e54c 100644 --- a/sound/soc/codecs/wm8940.c +++ b/sound/soc/codecs/wm8940.c | |||
@@ -430,19 +430,19 @@ static int wm8940_i2s_hw_params(struct snd_pcm_substream *substream, | |||
430 | if (ret) | 430 | if (ret) |
431 | goto error_ret; | 431 | goto error_ret; |
432 | 432 | ||
433 | switch (params_format(params)) { | 433 | switch (params_width(params)) { |
434 | case SNDRV_PCM_FORMAT_S8: | 434 | case 8: |
435 | companding = companding | (1 << 5); | 435 | companding = companding | (1 << 5); |
436 | break; | 436 | break; |
437 | case SNDRV_PCM_FORMAT_S16_LE: | 437 | case 16: |
438 | break; | 438 | break; |
439 | case SNDRV_PCM_FORMAT_S20_3LE: | 439 | case 20: |
440 | iface |= (1 << 5); | 440 | iface |= (1 << 5); |
441 | break; | 441 | break; |
442 | case SNDRV_PCM_FORMAT_S24_LE: | 442 | case 24: |
443 | iface |= (2 << 5); | 443 | iface |= (2 << 5); |
444 | break; | 444 | break; |
445 | case SNDRV_PCM_FORMAT_S32_LE: | 445 | case 32: |
446 | iface |= (3 << 5); | 446 | iface |= (3 << 5); |
447 | break; | 447 | break; |
448 | } | 448 | } |