From: Mark Brown Date: Wed, 8 Jan 2014 20:39:30 +0000 (+0000) Subject: ASoC: max98090: Use params_width() rather than memory format X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=7821afc4865e976c55403bdb13d798a133efc815;p=linux.git ASoC: max98090: Use params_width() rather than memory format Signed-off-by: Mark Brown --- diff --git a/sound/soc/codecs/max98090.c b/sound/soc/codecs/max98090.c index 0569a4c3ae00e..51f9b3d16b41d 100644 --- a/sound/soc/codecs/max98090.c +++ b/sound/soc/codecs/max98090.c @@ -1840,8 +1840,8 @@ static int max98090_dai_hw_params(struct snd_pcm_substream *substream, max98090->lrclk = params_rate(params); - switch (params_format(params)) { - case SNDRV_PCM_FORMAT_S16_LE: + switch (params_width(params)) { + case 16: snd_soc_update_bits(codec, M98090_REG_INTERFACE_FORMAT, M98090_WS_MASK, 0); break;