aboutsummaryrefslogtreecommitdiffstats
path: root/sound/pci/hda
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2013-06-25 03:28:40 -0400
committerTakashi Iwai <tiwai@suse.de>2013-06-25 03:29:40 -0400
commit0623a889d1c2eb6219576b13263bcd24133c971a (patch)
tree8409cddb6954b5831cbf6e44f16d4e6a0b0922a5 /sound/pci/hda
parent58e22201f8a4c270300c589083ff9117b3b8274c (diff)
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 <tiwai@suse.de>
Diffstat (limited to 'sound/pci/hda')
-rw-r--r--sound/pci/hda/patch_realtek.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/sound/pci/hda/patch_realtek.c b/sound/pci/hda/patch_realtek.c
index ad087ea32f3a..ae121113f223 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)
2603 2603
2604 snd_hda_codec_resume_amp(codec); 2604 snd_hda_codec_resume_amp(codec);
2605 snd_hda_codec_resume_cache(codec); 2605 snd_hda_codec_resume_cache(codec);
2606 alc_inv_dmic_sync(codec, true);
2606 hda_call_check_power_status(codec, 0x01); 2607 hda_call_check_power_status(codec, 0x01);
2607 return 0; 2608 return 0;
2608} 2609}