From: Takashi Iwai Date: Tue, 25 Jun 2013 07:28:40 +0000 (+0200) Subject: ALSA: hda - Add missing alc_inv_dmic_sync() call in alc269_resume() X-Git-Tag: upstream/snapshot3+hdmi~4712^2~7^2~11 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0623a889d1c2eb6219576b13263bcd24133c971a;p=platform%2Fadaptation%2Frenesas_rcar%2Frenesas_kernel.git ALSA: hda - Add missing alc_inv_dmic_sync() call in alc269_resume() As some of ALC269 quirks use the inverted dmic feature, we need to call alc_inv_dmic_sync() in the resume callback like in alc_resume(), too. Signed-off-by: Takashi Iwai --- diff --git a/sound/pci/hda/patch_realtek.c b/sound/pci/hda/patch_realtek.c index ad087ea..ae12111 100644 --- a/sound/pci/hda/patch_realtek.c +++ b/sound/pci/hda/patch_realtek.c @@ -2603,6 +2603,7 @@ static int alc269_resume(struct hda_codec *codec) snd_hda_codec_resume_amp(codec); snd_hda_codec_resume_cache(codec); + alc_inv_dmic_sync(codec, true); hda_call_check_power_status(codec, 0x01); return 0; }