ASoC: nau8825: fix issue that pop noise when start capture
authorAbhijeet Kumar <abhijeet.kumar@intel.com>
Mon, 11 Dec 2017 19:10:25 +0000 (00:40 +0530)
committerMark Brown <broonie@kernel.org>
Tue, 19 Dec 2017 10:52:49 +0000 (10:52 +0000)
In skylake platform, we hear a loud pop noise(0 dB) at start of
audio capture power up sequence. This patch removes the pop noise
from the recording by adding a delay before enabling ADC.

Signed-off-by: Abhijeet Kumar <abhijeet.kumar@intel.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/codecs/nau8825.c

index 714ce17..e853a6d 100644 (file)
@@ -905,6 +905,7 @@ static int nau8825_adc_event(struct snd_soc_dapm_widget *w,
 
        switch (event) {
        case SND_SOC_DAPM_POST_PMU:
+               msleep(125);
                regmap_update_bits(nau8825->regmap, NAU8825_REG_ENA_CTRL,
                        NAU8825_ENABLE_ADC, NAU8825_ENABLE_ADC);
                break;