From c7642a3dbc609ca84992ed384f4defd64aa16b49 Mon Sep 17 00:00:00 2001 From: Xing Zheng Date: Mon, 19 Apr 2021 09:17:59 +0800 Subject: [PATCH] ASoC: es7202: Fix the muted capturing after reboot Signed-off-by: Xing Zheng Change-Id: I375ed4ce368a6f94f302a9584a9bb02d444a89fa --- sound/soc/codecs/es7202.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sound/soc/codecs/es7202.c b/sound/soc/codecs/es7202.c index e1160e68382d..bed7dd0888c9 100644 --- a/sound/soc/codecs/es7202.c +++ b/sound/soc/codecs/es7202.c @@ -740,6 +740,8 @@ static int es7202_probe(struct snd_soc_component *component) es7202_write(ES7202_RESET_REG00, 0x01, i2c_ctl[cnt]); es7202_write(ES7202_CLK_EN_REG03, 0x03, i2c_ctl[cnt]); es7202_write(ES7202_BIAS_VMID_REG11, 0x2E, i2c_ctl[cnt]); + + es7202_multi_chips_update_bits(ES7202_PDM_INF_CTL_REG07, 0x03, 0x00); } return ret; }