Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 545774bd authored by Axel Lin's avatar Axel Lin Committed by Mark Brown
Browse files

ASoC: mc13783: Fix wrong mask value used in mc13xxx_reg_rmw() calls



mc13xxx_reg_rmw() won't change any bit if passing 0 to the mask field.
Pass AUDIO_SSI_SEL instead of 0 for the mask field to set AUDIO_SSI_SEL
bit.

Signed-off-by: default avatarAxel Lin <axel.lin@ingics.com>
Signed-off-by: default avatarMark Brown <broonie@kernel.org>
Cc: stable@vger.kernel.org
parent b787f68c
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -623,14 +623,14 @@ static int mc13783_probe(struct snd_soc_codec *codec)
				AUDIO_SSI_SEL, 0);
	else
		mc13xxx_reg_rmw(priv->mc13xxx, MC13783_AUDIO_CODEC,
				0, AUDIO_SSI_SEL);
				AUDIO_SSI_SEL, AUDIO_SSI_SEL);

	if (priv->dac_ssi_port == MC13783_SSI1_PORT)
		mc13xxx_reg_rmw(priv->mc13xxx, MC13783_AUDIO_DAC,
				AUDIO_SSI_SEL, 0);
	else
		mc13xxx_reg_rmw(priv->mc13xxx, MC13783_AUDIO_DAC,
				0, AUDIO_SSI_SEL);
				AUDIO_SSI_SEL, AUDIO_SSI_SEL);

	return 0;
}