aboutsummaryrefslogtreecommitdiffstats
path: root/sound
diff options
context:
space:
mode:
authorMark Brown <broonie@linaro.org>2014-01-08 20:39:37 +0000
committerMark Brown <broonie@linaro.org>2014-01-13 11:45:53 +0000
commit580ce08d5c1a96aeb0e3434bb5144defb6a334a2 (patch)
tree8d63ff5929fc31e579d5b228a8d35e0243cce8b7 /sound
parentASoC: max98090: Use params_width() rather than memory format (diff)
downloadlinux-dev-580ce08d5c1a96aeb0e3434bb5144defb6a334a2.tar.xz
linux-dev-580ce08d5c1a96aeb0e3434bb5144defb6a334a2.zip
ASoC: max98095: Use params_width() rather than memory format
Signed-off-by: Mark Brown <broonie@linaro.org>
Diffstat (limited to 'sound')
-rw-r--r--sound/soc/codecs/max98095.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sound/soc/codecs/max98095.c b/sound/soc/codecs/max98095.c
index 67244315c721..3ba1170ebb53 100644
--- a/sound/soc/codecs/max98095.c
+++ b/sound/soc/codecs/max98095.c
@@ -1213,12 +1213,12 @@ static int max98095_dai1_hw_params(struct snd_pcm_substream *substream,
rate = params_rate(params);
- switch (params_format(params)) {
- case SNDRV_PCM_FORMAT_S16_LE:
+ switch (params_width(params)) {
+ case 16:
snd_soc_update_bits(codec, M98095_02A_DAI1_FORMAT,
M98095_DAI_WS, 0);
break;
- case SNDRV_PCM_FORMAT_S24_LE:
+ case 24:
snd_soc_update_bits(codec, M98095_02A_DAI1_FORMAT,
M98095_DAI_WS, M98095_DAI_WS);
break;