Commit 5116ede1 authored by Axel Lin's avatar Axel Lin Committed by Mark Brown

ASoC: max98925: Fix bit-width 24 settings in max98925_dai_hw_params

Trivial typo fix.
Signed-off-by: default avatarAxel Lin <axel.lin@ingics.com>
Anish Kumar <Anish.Kumar@maximintegrated.com>
Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent 9cd974bb
...@@ -442,8 +442,8 @@ static int max98925_dai_hw_params(struct snd_pcm_substream *substream, ...@@ -442,8 +442,8 @@ static int max98925_dai_hw_params(struct snd_pcm_substream *substream,
case 24: case 24:
regmap_update_bits(max98925->regmap, regmap_update_bits(max98925->regmap,
MAX98925_FORMAT, MAX98925_FORMAT,
M98925_DAI_CHANSZ_MASK, M98925_DAI_CHANSZ_32); M98925_DAI_CHANSZ_MASK, M98925_DAI_CHANSZ_24);
max98925->ch_size = 32; max98925->ch_size = 24;
break; break;
case 32: case 32:
regmap_update_bits(max98925->regmap, regmap_update_bits(max98925->regmap,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment