diff options
Diffstat (limited to 'sound/pci/trident/trident.c')
-rw-r--r-- | sound/pci/trident/trident.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/sound/pci/trident/trident.c b/sound/pci/trident/trident.c index 611983ec7321..d36e6ca147e1 100644 --- a/sound/pci/trident/trident.c +++ b/sound/pci/trident/trident.c | |||
@@ -26,7 +26,7 @@ | |||
26 | #include <linux/time.h> | 26 | #include <linux/time.h> |
27 | #include <linux/module.h> | 27 | #include <linux/module.h> |
28 | #include <sound/core.h> | 28 | #include <sound/core.h> |
29 | #include <sound/trident.h> | 29 | #include "trident.h" |
30 | #include <sound/initval.h> | 30 | #include <sound/initval.h> |
31 | 31 | ||
32 | MODULE_AUTHOR("Jaroslav Kysela <perex@perex.cz>, <audio@tridentmicro.com>"); | 32 | MODULE_AUTHOR("Jaroslav Kysela <perex@perex.cz>, <audio@tridentmicro.com>"); |
@@ -178,8 +178,9 @@ static struct pci_driver trident_driver = { | |||
178 | .probe = snd_trident_probe, | 178 | .probe = snd_trident_probe, |
179 | .remove = __devexit_p(snd_trident_remove), | 179 | .remove = __devexit_p(snd_trident_remove), |
180 | #ifdef CONFIG_PM | 180 | #ifdef CONFIG_PM |
181 | .suspend = snd_trident_suspend, | 181 | .driver = { |
182 | .resume = snd_trident_resume, | 182 | .pm = &snd_trident_pm, |
183 | }, | ||
183 | #endif | 184 | #endif |
184 | }; | 185 | }; |
185 | 186 | ||