aboutsummaryrefslogtreecommitdiffstats
path: root/sound/soc/codecs/wm8731.c
diff options
context:
space:
mode:
Diffstat (limited to 'sound/soc/codecs/wm8731.c')
-rw-r--r--sound/soc/codecs/wm8731.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sound/soc/codecs/wm8731.c b/sound/soc/codecs/wm8731.c
index 5ada61611324..eebb3280bfad 100644
--- a/sound/soc/codecs/wm8731.c
+++ b/sound/soc/codecs/wm8731.c
@@ -348,13 +348,13 @@ static int wm8731_hw_params(struct snd_pcm_substream *substream,
348 snd_soc_write(codec, WM8731_SRATE, srate); 348 snd_soc_write(codec, WM8731_SRATE, srate);
349 349
350 /* bit size */ 350 /* bit size */
351 switch (params_format(params)) { 351 switch (params_width(params)) {
352 case SNDRV_PCM_FORMAT_S16_LE: 352 case 16:
353 break; 353 break;
354 case SNDRV_PCM_FORMAT_S20_3LE: 354 case 20:
355 iface |= 0x0004; 355 iface |= 0x0004;
356 break; 356 break;
357 case SNDRV_PCM_FORMAT_S24_LE: 357 case 24:
358 iface |= 0x0008; 358 iface |= 0x0008;
359 break; 359 break;
360 } 360 }