diff options
Diffstat (limited to 'sound/pci/korg1212/korg1212.c')
-rw-r--r-- | sound/pci/korg1212/korg1212.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sound/pci/korg1212/korg1212.c b/sound/pci/korg1212/korg1212.c index 8a67ce95f246..43b4228d9afe 100644 --- a/sound/pci/korg1212/korg1212.c +++ b/sound/pci/korg1212/korg1212.c | |||
@@ -2083,7 +2083,7 @@ static void snd_korg1212_proc_read(struct snd_info_entry *entry, | |||
2083 | snd_iprintf(buffer, " Error count: %ld\n", korg1212->totalerrorcnt); | 2083 | snd_iprintf(buffer, " Error count: %ld\n", korg1212->totalerrorcnt); |
2084 | } | 2084 | } |
2085 | 2085 | ||
2086 | static void __devinit snd_korg1212_proc_init(struct snd_korg1212 *korg1212) | 2086 | static void snd_korg1212_proc_init(struct snd_korg1212 *korg1212) |
2087 | { | 2087 | { |
2088 | struct snd_info_entry *entry; | 2088 | struct snd_info_entry *entry; |
2089 | 2089 | ||
@@ -2154,8 +2154,8 @@ static int snd_korg1212_dev_free(struct snd_device *device) | |||
2154 | return snd_korg1212_free(korg1212); | 2154 | return snd_korg1212_free(korg1212); |
2155 | } | 2155 | } |
2156 | 2156 | ||
2157 | static int __devinit snd_korg1212_create(struct snd_card *card, struct pci_dev *pci, | 2157 | static int snd_korg1212_create(struct snd_card *card, struct pci_dev *pci, |
2158 | struct snd_korg1212 ** rchip) | 2158 | struct snd_korg1212 **rchip) |
2159 | 2159 | ||
2160 | { | 2160 | { |
2161 | int err, rc; | 2161 | int err, rc; |
@@ -2429,7 +2429,7 @@ static int __devinit snd_korg1212_create(struct snd_card *card, struct pci_dev * | |||
2429 | * Card initialisation | 2429 | * Card initialisation |
2430 | */ | 2430 | */ |
2431 | 2431 | ||
2432 | static int __devinit | 2432 | static int |
2433 | snd_korg1212_probe(struct pci_dev *pci, | 2433 | snd_korg1212_probe(struct pci_dev *pci, |
2434 | const struct pci_device_id *pci_id) | 2434 | const struct pci_device_id *pci_id) |
2435 | { | 2435 | { |
@@ -2470,7 +2470,7 @@ snd_korg1212_probe(struct pci_dev *pci, | |||
2470 | return 0; | 2470 | return 0; |
2471 | } | 2471 | } |
2472 | 2472 | ||
2473 | static void __devexit snd_korg1212_remove(struct pci_dev *pci) | 2473 | static void snd_korg1212_remove(struct pci_dev *pci) |
2474 | { | 2474 | { |
2475 | snd_card_free(pci_get_drvdata(pci)); | 2475 | snd_card_free(pci_get_drvdata(pci)); |
2476 | pci_set_drvdata(pci, NULL); | 2476 | pci_set_drvdata(pci, NULL); |
@@ -2480,7 +2480,7 @@ static struct pci_driver korg1212_driver = { | |||
2480 | .name = KBUILD_MODNAME, | 2480 | .name = KBUILD_MODNAME, |
2481 | .id_table = snd_korg1212_ids, | 2481 | .id_table = snd_korg1212_ids, |
2482 | .probe = snd_korg1212_probe, | 2482 | .probe = snd_korg1212_probe, |
2483 | .remove = __devexit_p(snd_korg1212_remove), | 2483 | .remove = snd_korg1212_remove, |
2484 | }; | 2484 | }; |
2485 | 2485 | ||
2486 | module_pci_driver(korg1212_driver); | 2486 | module_pci_driver(korg1212_driver); |