diff options
author | Takashi Iwai <tiwai@suse.de> | 2005-09-01 11:56:34 +0200 |
---|---|---|
committer | Jaroslav Kysela <perex@suse.cz> | 2005-09-12 10:40:24 +0200 |
commit | 8e3d759d4b5d841c2a665cffe6cd237dab49e3b1 (patch) | |
tree | 5cc926f65dc8010971200e2763d0ad19d847c455 /sound/pci | |
parent | 12bb5b78e512898034cdd8813f2889743fa6fa3d (diff) | |
download | linux-3.10-8e3d759d4b5d841c2a665cffe6cd237dab49e3b1.tar.gz linux-3.10-8e3d759d4b5d841c2a665cffe6cd237dab49e3b1.tar.bz2 linux-3.10-8e3d759d4b5d841c2a665cffe6cd237dab49e3b1.zip |
[ALSA] atiixp - Fix PM resume
ATIIXP driver
Fixed PM resume on atiixp driver.
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci')
-rw-r--r-- | sound/pci/atiixp.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sound/pci/atiixp.c b/sound/pci/atiixp.c index 188df085b7e..19c7bd08d06 100644 --- a/sound/pci/atiixp.c +++ b/sound/pci/atiixp.c @@ -1453,6 +1453,7 @@ static int snd_atiixp_resume(snd_card_t *card) atiixp_dma_t *dma = &chip->dmas[i]; if (dma->substream && dma->suspended) { dma->ops->enable_dma(chip, 1); + dma->substream->ops->prepare(dma->substream); writel((u32)dma->desc_buf.addr | ATI_REG_LINKPTR_EN, chip->remap_addr + dma->ops->llp_offset); writel(dma->saved_curptr, chip->remap_addr + dma->ops->dt_cur); |