aboutsummaryrefslogtreecommitdiffstats
path: root/sound
diff options
context:
space:
mode:
authorMike Rapoport <mike@compulab.co.il>2008-07-02 13:19:23 +0300
committerJaroslav Kysela <perex@perex.cz>2008-07-10 09:32:07 +0200
commit25552e87aa4102f048f1a8a8ddc87c96593c304e (patch)
treebffe1b9a9b54ff79d4ac8d6f4f4df1e9403ad694 /sound
parentALSA: ALSA: hda - Fix speaker output on Toshiba P105 (diff)
downloadlinux-dev-25552e87aa4102f048f1a8a8ddc87c96593c304e.tar.xz
linux-dev-25552e87aa4102f048f1a8a8ddc87c96593c304e.zip
ALSA: ac97 - fix patch_ucb1400 for proper resume
Replace 'snd_ac97_write' with snd_ac97_write_cache' in pacth_ucb1400 to allow proper codec wakeup. Signed-off-by: Mike Rapoport <mike@compulab.co.il> Signed-off-by: Takashi Iwai <tiwai@suse.de> Signed-off-by: Jaroslav Kysela <perex@perex.cz>
Diffstat (limited to 'sound')
-rw-r--r--sound/pci/ac97/ac97_patch.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/pci/ac97/ac97_patch.c b/sound/pci/ac97/ac97_patch.c
index abe88adec37e..0746e9ccc20b 100644
--- a/sound/pci/ac97/ac97_patch.c
+++ b/sound/pci/ac97/ac97_patch.c
@@ -3710,7 +3710,7 @@ static int patch_ucb1400(struct snd_ac97 * ac97)
{
ac97->build_ops = &patch_ucb1400_ops;
/* enable headphone driver and smart low power mode by default */
- snd_ac97_write(ac97, 0x6a, 0x0050);
- snd_ac97_write(ac97, 0x6c, 0x0030);
+ snd_ac97_write_cache(ac97, 0x6a, 0x0050);
+ snd_ac97_write_cache(ac97, 0x6c, 0x0030);
return 0;
}