aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sound/pci/ac97/ac97_patch.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/sound/pci/ac97/ac97_patch.c b/sound/pci/ac97/ac97_patch.c
index cc93ee619086..7f197c780816 100644
--- a/sound/pci/ac97/ac97_patch.c
+++ b/sound/pci/ac97/ac97_patch.c
@@ -1371,6 +1371,13 @@ static void ad18xx_resume(struct snd_ac97 *ac97)
1371 1371
1372 snd_ac97_restore_iec958(ac97); 1372 snd_ac97_restore_iec958(ac97);
1373} 1373}
1374
1375static void ad1888_resume(struct snd_ac97 *ac97)
1376{
1377 ad18xx_resume(ac97);
1378 snd_ac97_write_cache(ac97, AC97_CODEC_CLASS_REV, 0x8080);
1379}
1380
1374#endif 1381#endif
1375 1382
1376int patch_ad1819(struct snd_ac97 * ac97) 1383int patch_ad1819(struct snd_ac97 * ac97)
@@ -1844,7 +1851,7 @@ static struct snd_ac97_build_ops patch_ad1888_build_ops = {
1844 .build_post_spdif = patch_ad198x_post_spdif, 1851 .build_post_spdif = patch_ad198x_post_spdif,
1845 .build_specific = patch_ad1888_specific, 1852 .build_specific = patch_ad1888_specific,
1846#ifdef CONFIG_PM 1853#ifdef CONFIG_PM
1847 .resume = ad18xx_resume, 1854 .resume = ad1888_resume,
1848#endif 1855#endif
1849 .update_jacks = ad1888_update_jacks, 1856 .update_jacks = ad1888_update_jacks,
1850}; 1857};