aboutsummaryrefslogtreecommitdiffstats
path: root/sound/pci/rme32.c
diff options
context:
space:
mode:
Diffstat (limited to 'sound/pci/rme32.c')
-rw-r--r--sound/pci/rme32.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/sound/pci/rme32.c b/sound/pci/rme32.c
index 46b3629dda22..2450663e1a18 100644
--- a/sound/pci/rme32.c
+++ b/sound/pci/rme32.c
@@ -1332,7 +1332,7 @@ snd_rme32_free_adat_pcm(struct snd_pcm *pcm)
1332 rme32->adat_pcm = NULL; 1332 rme32->adat_pcm = NULL;
1333} 1333}
1334 1334
1335static int __devinit snd_rme32_create(struct rme32 * rme32) 1335static int snd_rme32_create(struct rme32 *rme32)
1336{ 1336{
1337 struct pci_dev *pci = rme32->pci; 1337 struct pci_dev *pci = rme32->pci;
1338 int err; 1338 int err;
@@ -1554,7 +1554,7 @@ snd_rme32_proc_read(struct snd_info_entry * entry, struct snd_info_buffer *buffe
1554 } 1554 }
1555} 1555}
1556 1556
1557static void __devinit snd_rme32_proc_init(struct rme32 * rme32) 1557static void snd_rme32_proc_init(struct rme32 *rme32)
1558{ 1558{
1559 struct snd_info_entry *entry; 1559 struct snd_info_entry *entry;
1560 1560
@@ -1922,7 +1922,7 @@ static void snd_rme32_card_free(struct snd_card *card)
1922 snd_rme32_free(card->private_data); 1922 snd_rme32_free(card->private_data);
1923} 1923}
1924 1924
1925static int __devinit 1925static int
1926snd_rme32_probe(struct pci_dev *pci, const struct pci_device_id *pci_id) 1926snd_rme32_probe(struct pci_dev *pci, const struct pci_device_id *pci_id)
1927{ 1927{
1928 static int dev; 1928 static int dev;
@@ -1978,7 +1978,7 @@ snd_rme32_probe(struct pci_dev *pci, const struct pci_device_id *pci_id)
1978 return 0; 1978 return 0;
1979} 1979}
1980 1980
1981static void __devexit snd_rme32_remove(struct pci_dev *pci) 1981static void snd_rme32_remove(struct pci_dev *pci)
1982{ 1982{
1983 snd_card_free(pci_get_drvdata(pci)); 1983 snd_card_free(pci_get_drvdata(pci));
1984 pci_set_drvdata(pci, NULL); 1984 pci_set_drvdata(pci, NULL);
@@ -1988,7 +1988,7 @@ static struct pci_driver rme32_driver = {
1988 .name = KBUILD_MODNAME, 1988 .name = KBUILD_MODNAME,
1989 .id_table = snd_rme32_ids, 1989 .id_table = snd_rme32_ids,
1990 .probe = snd_rme32_probe, 1990 .probe = snd_rme32_probe,
1991 .remove = __devexit_p(snd_rme32_remove), 1991 .remove = snd_rme32_remove,
1992}; 1992};
1993 1993
1994module_pci_driver(rme32_driver); 1994module_pci_driver(rme32_driver);