aboutsummaryrefslogtreecommitdiffstats
path: root/sound/pci/oxygen/virtuoso.c
diff options
context:
space:
mode:
Diffstat (limited to 'sound/pci/oxygen/virtuoso.c')
-rw-r--r--sound/pci/oxygen/virtuoso.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/sound/pci/oxygen/virtuoso.c b/sound/pci/oxygen/virtuoso.c
index 8104eab90e51..64b9fda5f04a 100644
--- a/sound/pci/oxygen/virtuoso.c
+++ b/sound/pci/oxygen/virtuoso.c
@@ -58,8 +58,8 @@ static DEFINE_PCI_DEVICE_TABLE(xonar_ids) = {
58}; 58};
59MODULE_DEVICE_TABLE(pci, xonar_ids); 59MODULE_DEVICE_TABLE(pci, xonar_ids);
60 60
61static int __devinit get_xonar_model(struct oxygen *chip, 61static int get_xonar_model(struct oxygen *chip,
62 const struct pci_device_id *id) 62 const struct pci_device_id *id)
63{ 63{
64 if (get_xonar_pcm179x_model(chip, id) >= 0) 64 if (get_xonar_pcm179x_model(chip, id) >= 0)
65 return 0; 65 return 0;
@@ -70,8 +70,8 @@ static int __devinit get_xonar_model(struct oxygen *chip,
70 return -EINVAL; 70 return -EINVAL;
71} 71}
72 72
73static int __devinit xonar_probe(struct pci_dev *pci, 73static int xonar_probe(struct pci_dev *pci,
74 const struct pci_device_id *pci_id) 74 const struct pci_device_id *pci_id)
75{ 75{
76 static int dev; 76 static int dev;
77 int err; 77 int err;
@@ -93,7 +93,7 @@ static struct pci_driver xonar_driver = {
93 .name = KBUILD_MODNAME, 93 .name = KBUILD_MODNAME,
94 .id_table = xonar_ids, 94 .id_table = xonar_ids,
95 .probe = xonar_probe, 95 .probe = xonar_probe,
96 .remove = __devexit_p(oxygen_pci_remove), 96 .remove = oxygen_pci_remove,
97#ifdef CONFIG_PM_SLEEP 97#ifdef CONFIG_PM_SLEEP
98 .driver = { 98 .driver = {
99 .pm = &oxygen_pci_pm, 99 .pm = &oxygen_pci_pm,