[alsa-devel] [PATCH] ASoC: fsl_sai: Don't use ~FSL_SAI_CR2_SYNC

Mark Brown broonie at kernel.org
Mon Aug 4 17:17:44 CEST 2014


From: Mark Brown <broonie at linaro.org>

On 64 bit systems ~FSL_SAI_CR2_SYNC generates a constant that won't fit in
an unsigned int, causing GCC to warn.  Since we're already only updating
one bit due to the masking in update bits just write the value
explicitly as zero.

Signed-off-by: Mark Brown <broonie at linaro.org>
---
 sound/soc/fsl/fsl_sai.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/sound/soc/fsl/fsl_sai.c b/sound/soc/fsl/fsl_sai.c
index faa0497..9f10575 100644
--- a/sound/soc/fsl/fsl_sai.c
+++ b/sound/soc/fsl/fsl_sai.c
@@ -333,8 +333,7 @@ static int fsl_sai_trigger(struct snd_pcm_substream *substream, int cmd,
 	 * The transmitter bit clock and frame sync are to be
 	 * used by both the transmitter and receiver.
 	 */
-	regmap_update_bits(sai->regmap, FSL_SAI_TCR2, FSL_SAI_CR2_SYNC,
-			   ~FSL_SAI_CR2_SYNC);
+	regmap_update_bits(sai->regmap, FSL_SAI_TCR2, FSL_SAI_CR2_SYNC, 0);
 	regmap_update_bits(sai->regmap, FSL_SAI_RCR2, FSL_SAI_CR2_SYNC,
 			   FSL_SAI_CR2_SYNC);
 
-- 
2.0.0



More information about the Alsa-devel mailing list