aboutsummaryrefslogtreecommitdiffstats
path: root/sound/pci/rme9652/rme9652.c
diff options
context:
space:
mode:
Diffstat (limited to 'sound/pci/rme9652/rme9652.c')
-rw-r--r--sound/pci/rme9652/rme9652.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/sound/pci/rme9652/rme9652.c b/sound/pci/rme9652/rme9652.c
index a15fc100ab0c..773a67fff4cd 100644
--- a/sound/pci/rme9652/rme9652.c
+++ b/sound/pci/rme9652/rme9652.c
@@ -1757,7 +1757,7 @@ snd_rme9652_proc_read(struct snd_info_entry *entry, struct snd_info_buffer *buff
1757 snd_iprintf(buffer, "\n"); 1757 snd_iprintf(buffer, "\n");
1758} 1758}
1759 1759
1760static void __devinit snd_rme9652_proc_init(struct snd_rme9652 *rme9652) 1760static void snd_rme9652_proc_init(struct snd_rme9652 *rme9652)
1761{ 1761{
1762 struct snd_info_entry *entry; 1762 struct snd_info_entry *entry;
1763 1763
@@ -1788,7 +1788,7 @@ static int snd_rme9652_free(struct snd_rme9652 *rme9652)
1788 return 0; 1788 return 0;
1789} 1789}
1790 1790
1791static int __devinit snd_rme9652_initialize_memory(struct snd_rme9652 *rme9652) 1791static int snd_rme9652_initialize_memory(struct snd_rme9652 *rme9652)
1792{ 1792{
1793 unsigned long pb_bus, cb_bus; 1793 unsigned long pb_bus, cb_bus;
1794 1794
@@ -2414,8 +2414,8 @@ static struct snd_pcm_ops snd_rme9652_capture_ops = {
2414 .copy = snd_rme9652_capture_copy, 2414 .copy = snd_rme9652_capture_copy,
2415}; 2415};
2416 2416
2417static int __devinit snd_rme9652_create_pcm(struct snd_card *card, 2417static int snd_rme9652_create_pcm(struct snd_card *card,
2418 struct snd_rme9652 *rme9652) 2418 struct snd_rme9652 *rme9652)
2419{ 2419{
2420 struct snd_pcm *pcm; 2420 struct snd_pcm *pcm;
2421 int err; 2421 int err;
@@ -2438,9 +2438,9 @@ static int __devinit snd_rme9652_create_pcm(struct snd_card *card,
2438 return 0; 2438 return 0;
2439} 2439}
2440 2440
2441static int __devinit snd_rme9652_create(struct snd_card *card, 2441static int snd_rme9652_create(struct snd_card *card,
2442 struct snd_rme9652 *rme9652, 2442 struct snd_rme9652 *rme9652,
2443 int precise_ptr) 2443 int precise_ptr)
2444{ 2444{
2445 struct pci_dev *pci = rme9652->pci; 2445 struct pci_dev *pci = rme9652->pci;
2446 int err; 2446 int err;
@@ -2578,8 +2578,8 @@ static void snd_rme9652_card_free(struct snd_card *card)
2578 snd_rme9652_free(rme9652); 2578 snd_rme9652_free(rme9652);
2579} 2579}
2580 2580
2581static int __devinit snd_rme9652_probe(struct pci_dev *pci, 2581static int snd_rme9652_probe(struct pci_dev *pci,
2582 const struct pci_device_id *pci_id) 2582 const struct pci_device_id *pci_id)
2583{ 2583{
2584 static int dev; 2584 static int dev;
2585 struct snd_rme9652 *rme9652; 2585 struct snd_rme9652 *rme9652;
@@ -2625,7 +2625,7 @@ static int __devinit snd_rme9652_probe(struct pci_dev *pci,
2625 return 0; 2625 return 0;
2626} 2626}
2627 2627
2628static void __devexit snd_rme9652_remove(struct pci_dev *pci) 2628static void snd_rme9652_remove(struct pci_dev *pci)
2629{ 2629{
2630 snd_card_free(pci_get_drvdata(pci)); 2630 snd_card_free(pci_get_drvdata(pci));
2631 pci_set_drvdata(pci, NULL); 2631 pci_set_drvdata(pci, NULL);
@@ -2635,7 +2635,7 @@ static struct pci_driver rme9652_driver = {
2635 .name = KBUILD_MODNAME, 2635 .name = KBUILD_MODNAME,
2636 .id_table = snd_rme9652_ids, 2636 .id_table = snd_rme9652_ids,
2637 .probe = snd_rme9652_probe, 2637 .probe = snd_rme9652_probe,
2638 .remove = __devexit_p(snd_rme9652_remove), 2638 .remove = snd_rme9652_remove,
2639}; 2639};
2640 2640
2641module_pci_driver(rme9652_driver); 2641module_pci_driver(rme9652_driver);