diff options
author | Takashi Iwai <tiwai@suse.de> | 2012-07-02 09:20:37 -0400 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2012-07-03 02:23:03 -0400 |
commit | 68cb2b559278858ef9f3a7722f95df88797c7840 (patch) | |
tree | 3dd568aac5e1004ffd1e8400aa5a50ca6a11ad01 /sound/pci/ens1370.c | |
parent | 284e7ca75f96a18f182cce38ba76ee724fb97e16 (diff) |
ALSA: Convert to new pm_ops for PCI drivers
Straightforward conversion to the new pm_ops from the legacy
suspend/resume ops.
Since we change vx222, vx_core and vxpocket have to be converted,
too.
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci/ens1370.c')
-rw-r--r-- | sound/pci/ens1370.c | 25 |
1 files changed, 15 insertions, 10 deletions
diff --git a/sound/pci/ens1370.c b/sound/pci/ens1370.c index 3821c81d1c99..f7e6f73186e1 100644 --- a/sound/pci/ens1370.c +++ b/sound/pci/ens1370.c | |||
@@ -2033,9 +2033,10 @@ static void snd_ensoniq_chip_init(struct ensoniq *ensoniq) | |||
2033 | } | 2033 | } |
2034 | 2034 | ||
2035 | #ifdef CONFIG_PM | 2035 | #ifdef CONFIG_PM |
2036 | static int snd_ensoniq_suspend(struct pci_dev *pci, pm_message_t state) | 2036 | static int snd_ensoniq_suspend(struct device *dev) |
2037 | { | 2037 | { |
2038 | struct snd_card *card = pci_get_drvdata(pci); | 2038 | struct pci_dev *pci = to_pci_dev(dev); |
2039 | struct snd_card *card = dev_get_drvdata(dev); | ||
2039 | struct ensoniq *ensoniq = card->private_data; | 2040 | struct ensoniq *ensoniq = card->private_data; |
2040 | 2041 | ||
2041 | snd_power_change_state(card, SNDRV_CTL_POWER_D3hot); | 2042 | snd_power_change_state(card, SNDRV_CTL_POWER_D3hot); |
@@ -2058,13 +2059,14 @@ static int snd_ensoniq_suspend(struct pci_dev *pci, pm_message_t state) | |||
2058 | 2059 | ||
2059 | pci_disable_device(pci); | 2060 | pci_disable_device(pci); |
2060 | pci_save_state(pci); | 2061 | pci_save_state(pci); |
2061 | pci_set_power_state(pci, pci_choose_state(pci, state)); | 2062 | pci_set_power_state(pci, PCI_D3hot); |
2062 | return 0; | 2063 | return 0; |
2063 | } | 2064 | } |
2064 | 2065 | ||
2065 | static int snd_ensoniq_resume(struct pci_dev *pci) | 2066 | static int snd_ensoniq_resume(struct device *dev) |
2066 | { | 2067 | { |
2067 | struct snd_card *card = pci_get_drvdata(pci); | 2068 | struct pci_dev *pci = to_pci_dev(dev); |
2069 | struct snd_card *card = dev_get_drvdata(dev); | ||
2068 | struct ensoniq *ensoniq = card->private_data; | 2070 | struct ensoniq *ensoniq = card->private_data; |
2069 | 2071 | ||
2070 | pci_set_power_state(pci, PCI_D0); | 2072 | pci_set_power_state(pci, PCI_D0); |
@@ -2087,8 +2089,12 @@ static int snd_ensoniq_resume(struct pci_dev *pci) | |||
2087 | snd_power_change_state(card, SNDRV_CTL_POWER_D0); | 2089 | snd_power_change_state(card, SNDRV_CTL_POWER_D0); |
2088 | return 0; | 2090 | return 0; |
2089 | } | 2091 | } |
2090 | #endif /* CONFIG_PM */ | ||
2091 | 2092 | ||
2093 | static SIMPLE_DEV_PM_OPS(snd_ensoniq_pm, snd_ensoniq_suspend, snd_ensoniq_resume); | ||
2094 | #define SND_ENSONIQ_PM_OPS &snd_ensoniq_pm | ||
2095 | #else | ||
2096 | #define SND_ENSONIQ_PM_OPS NULL | ||
2097 | #endif /* CONFIG_PM */ | ||
2092 | 2098 | ||
2093 | static int __devinit snd_ensoniq_create(struct snd_card *card, | 2099 | static int __devinit snd_ensoniq_create(struct snd_card *card, |
2094 | struct pci_dev *pci, | 2100 | struct pci_dev *pci, |
@@ -2493,10 +2499,9 @@ static struct pci_driver ens137x_driver = { | |||
2493 | .id_table = snd_audiopci_ids, | 2499 | .id_table = snd_audiopci_ids, |
2494 | .probe = snd_audiopci_probe, | 2500 | .probe = snd_audiopci_probe, |
2495 | .remove = __devexit_p(snd_audiopci_remove), | 2501 | .remove = __devexit_p(snd_audiopci_remove), |
2496 | #ifdef CONFIG_PM | 2502 | .driver = { |
2497 | .suspend = snd_ensoniq_suspend, | 2503 | .pm = SND_ENSONIQ_PM_OPS, |
2498 | .resume = snd_ensoniq_resume, | 2504 | }, |
2499 | #endif | ||
2500 | }; | 2505 | }; |
2501 | 2506 | ||
2502 | module_pci_driver(ens137x_driver); | 2507 | module_pci_driver(ens137x_driver); |