aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKuninori Morimoto <kuninori.morimoto.gx@renesas.com>2018-02-12 21:54:58 -0500
committerMark Brown <broonie@kernel.org>2018-02-13 06:58:45 -0500
commit1417c5fa3962d768bb8f18f4725a5fc039dbbb0e (patch)
treed7ca7b4604e4b16c57ea4a302d306687c6f9dde0
parent48c3387642967d62fc47aff4ad0e3816bf8292e3 (diff)
ASoC: wm9081: fixup wm9081_digital_mute() reg read
commit 48c338764296 ("ASoC: wm9081: replace codec to component") replaced codec to component, but it didn't keep WM9081_DAC_DIGITAL_2 value to reg. This patch fixup it. Reported-by: kbuild test robot <fengguang.wu@intel.com> Reported-by: Stephen Rothwell <sfr@canb.auug.org.au> Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r--sound/soc/codecs/wm9081.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/codecs/wm9081.c b/sound/soc/codecs/wm9081.c
index 52dd610cd8dc..5a0ea7b3c149 100644
--- a/sound/soc/codecs/wm9081.c
+++ b/sound/soc/codecs/wm9081.c
@@ -1155,7 +1155,7 @@ static int wm9081_digital_mute(struct snd_soc_dai *codec_dai, int mute)
1155 struct snd_soc_component *component = codec_dai->component; 1155 struct snd_soc_component *component = codec_dai->component;
1156 unsigned int reg; 1156 unsigned int reg;
1157 1157
1158 snd_soc_component_read32(component, WM9081_DAC_DIGITAL_2); 1158 reg = snd_soc_component_read32(component, WM9081_DAC_DIGITAL_2);
1159 1159
1160 if (mute) 1160 if (mute)
1161 reg |= WM9081_DAC_MUTE; 1161 reg |= WM9081_DAC_MUTE;