Skip to content

Commit

Permalink
ALSA: ca0106 - Check ac97 availability at PM
Browse files Browse the repository at this point in the history
Check the availability of ac97 at PM suspend/resume callbacks.

Signed-off-by: Takashi Iwai <tiwai@suse.de>
  • Loading branch information
Takashi Iwai committed Dec 20, 2008
1 parent 8df0f70 commit 50232d6
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions sound/pci/ca0106/ca0106_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -1752,7 +1752,8 @@ static int snd_ca0106_suspend(struct pci_dev *pci, pm_message_t state)
snd_power_change_state(card, SNDRV_CTL_POWER_D3hot);
for (i = 0; i < 4; i++)
snd_pcm_suspend_all(chip->pcm[i]);
snd_ac97_suspend(chip->ac97);
if (chip->details->ac97)
snd_ac97_suspend(chip->ac97);
snd_ca0106_mixer_suspend(chip);

ca0106_stop_chip(chip);
Expand Down Expand Up @@ -1781,7 +1782,8 @@ static int snd_ca0106_resume(struct pci_dev *pci)

ca0106_init_chip(chip, 1);

snd_ac97_resume(chip->ac97);
if (chip->details->ac97)
snd_ac97_resume(chip->ac97);
snd_ca0106_mixer_resume(chip);
if (chip->details->spi_dac) {
for (i = 0; i < ARRAY_SIZE(chip->spi_dac_reg); i++)
Expand Down

0 comments on commit 50232d6

Please sign in to comment.