Skip to content

Commit

Permalink
ASoC: wm8974: Convert to params_width()
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Mark Brown committed Jul 31, 2014
1 parent d835e99 commit 6afdc9a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions sound/soc/codecs/wm8974.c
Original file line number Diff line number Diff line change
Expand Up @@ -445,16 +445,16 @@ static int wm8974_pcm_hw_params(struct snd_pcm_substream *substream,
u16 adn = snd_soc_read(codec, WM8974_ADD) & 0x1f1;

/* bit size */
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:
iface |= 0x0020;
break;
case SNDRV_PCM_FORMAT_S24_LE:
case 24:
iface |= 0x0040;
break;
case SNDRV_PCM_FORMAT_S32_LE:
case 32:
iface |= 0x0060;
break;
}
Expand Down

0 comments on commit 6afdc9a

Please sign in to comment.