diff options
author | Clemens Ladisch <clemens@ladisch.de> | 2009-07-02 08:31:30 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2009-07-30 14:39:02 -0700 |
commit | 59dd743d8d68e265eba65776388e91d298f57928 (patch) | |
tree | 7a69492f62c2c0e3d19cc68e6b11dbfb08a94c5b /sound | |
parent | 172cad5201cad098f408202a7523f41039b80933 (diff) |
sound: virtuoso: fix Xonar D1/DX silence after resume
commit 826390796d09444b93e1f957582f8970ddfd9b3d upstream.
When resuming, we better take the DACs out of the reset state before
trying to use them.
Reference: kernel bug #13599
http://bugzilla.kernel.org/show_bug.cgi?id=13599
Signed-off-by: Clemens Ladisch <clemens@ladisch.de>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/pci/oxygen/virtuoso.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sound/pci/oxygen/virtuoso.c b/sound/pci/oxygen/virtuoso.c index bc5ce11c8b1..b369504cffa 100644 --- a/sound/pci/oxygen/virtuoso.c +++ b/sound/pci/oxygen/virtuoso.c @@ -621,6 +621,8 @@ static void xonar_d2_resume(struct oxygen *chip) static void xonar_d1_resume(struct oxygen *chip) { + oxygen_set_bits8(chip, OXYGEN_FUNCTION, OXYGEN_FUNCTION_RESET_CODEC); + msleep(1); cs43xx_init(chip); xonar_enable_output(chip); } |