Pārlūkot izejas kodu

ASoC: Avoid writing to WM8971_RESET in wm8971_resume

Writing to WM8971_RESET resets all registers to the default state.
Thus we should avoid writing to WM8971_RESET on resume.

Signed-off-by: Axel Lin <axel.lin@gmail.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Axel Lin 14 gadi atpakaļ
vecāks
revīzija
1a3bbb40da
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  1. 1 1
      sound/soc/codecs/wm8971.c

+ 1 - 1
sound/soc/codecs/wm8971.c

@@ -612,7 +612,7 @@ static int wm8971_resume(struct snd_soc_codec *codec)
 
 
 	/* Sync reg_cache with the hardware */
 	/* Sync reg_cache with the hardware */
 	for (i = 0; i < ARRAY_SIZE(wm8971_reg); i++) {
 	for (i = 0; i < ARRAY_SIZE(wm8971_reg); i++) {
-		if (i + 1 == WM8971_RESET)
+		if (i == WM8971_RESET)
 			continue;
 			continue;
 		data[0] = (i << 1) | ((cache[i] >> 8) & 0x0001);
 		data[0] = (i << 1) | ((cache[i] >> 8) & 0x0001);
 		data[1] = cache[i] & 0x00ff;
 		data[1] = cache[i] & 0x00ff;