diff options
Diffstat (limited to 'sound/soc')
-rw-r--r-- | sound/soc/codecs/wm8711.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sound/soc/codecs/wm8711.c b/sound/soc/codecs/wm8711.c index b0fbcb377baf..32187e739b4f 100644 --- a/sound/soc/codecs/wm8711.c +++ b/sound/soc/codecs/wm8711.c | |||
@@ -169,13 +169,13 @@ static int wm8711_hw_params(struct snd_pcm_substream *substream, | |||
169 | snd_soc_write(codec, WM8711_SRATE, srate); | 169 | snd_soc_write(codec, WM8711_SRATE, srate); |
170 | 170 | ||
171 | /* bit size */ | 171 | /* bit size */ |
172 | switch (params_format(params)) { | 172 | switch (params_width(params)) { |
173 | case SNDRV_PCM_FORMAT_S16_LE: | 173 | case 16: |
174 | break; | 174 | break; |
175 | case SNDRV_PCM_FORMAT_S20_3LE: | 175 | case 20: |
176 | iface |= 0x0004; | 176 | iface |= 0x0004; |
177 | break; | 177 | break; |
178 | case SNDRV_PCM_FORMAT_S24_LE: | 178 | case 24: |
179 | iface |= 0x0008; | 179 | iface |= 0x0008; |
180 | break; | 180 | break; |
181 | } | 181 | } |