aboutsummaryrefslogtreecommitdiffstats
path: root/sound/pci/ca0106
diff options
context:
space:
mode:
Diffstat (limited to 'sound/pci/ca0106')
-rw-r--r--sound/pci/ca0106/ca0106_main.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/sound/pci/ca0106/ca0106_main.c b/sound/pci/ca0106/ca0106_main.c
index cea8a7cdb1d5..c13aa41a35b4 100644
--- a/sound/pci/ca0106/ca0106_main.c
+++ b/sound/pci/ca0106/ca0106_main.c
@@ -1776,7 +1776,12 @@ static int snd_ca0106_resume(struct pci_dev *pci)
1776 1776
1777 pci_set_power_state(pci, PCI_D0); 1777 pci_set_power_state(pci, PCI_D0);
1778 pci_restore_state(pci); 1778 pci_restore_state(pci);
1779 pci_enable_device(pci); 1779
1780 if (pci_enable_device(pci) < 0) {
1781 snd_card_disconnect(card);
1782 return -EIO;
1783 }
1784
1780 pci_set_master(pci); 1785 pci_set_master(pci);
1781 1786
1782 ca0106_init_chip(chip); 1787 ca0106_init_chip(chip);