aboutsummaryrefslogtreecommitdiffstats
path: root/sound/firewire/speakers.c
diff options
context:
space:
mode:
Diffstat (limited to 'sound/firewire/speakers.c')
-rw-r--r--sound/firewire/speakers.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sound/firewire/speakers.c b/sound/firewire/speakers.c
index 297244e658d9..d6846557f270 100644
--- a/sound/firewire/speakers.c
+++ b/sound/firewire/speakers.c
@@ -663,7 +663,7 @@ static void fwspk_card_free(struct snd_card *card)
663 mutex_destroy(&fwspk->mutex); 663 mutex_destroy(&fwspk->mutex);
664} 664}
665 665
666static const struct device_info *__devinit fwspk_detect(struct fw_device *dev) 666static const struct device_info *fwspk_detect(struct fw_device *dev)
667{ 667{
668 static const struct device_info griffin_firewave = { 668 static const struct device_info griffin_firewave = {
669 .driver_name = "FireWave", 669 .driver_name = "FireWave",
@@ -699,7 +699,7 @@ static const struct device_info *__devinit fwspk_detect(struct fw_device *dev)
699 return NULL; 699 return NULL;
700} 700}
701 701
702static int __devinit fwspk_probe(struct device *unit_dev) 702static int fwspk_probe(struct device *unit_dev)
703{ 703{
704 struct fw_unit *unit = fw_unit(unit_dev); 704 struct fw_unit *unit = fw_unit(unit_dev);
705 struct fw_device *fw_dev = fw_parent_device(unit); 705 struct fw_device *fw_dev = fw_parent_device(unit);
@@ -770,7 +770,7 @@ error:
770 return err; 770 return err;
771} 771}
772 772
773static int __devexit fwspk_remove(struct device *dev) 773static int fwspk_remove(struct device *dev)
774{ 774{
775 struct fwspk *fwspk = dev_get_drvdata(dev); 775 struct fwspk *fwspk = dev_get_drvdata(dev);
776 776
@@ -834,7 +834,7 @@ static struct fw_driver fwspk_driver = {
834 .name = KBUILD_MODNAME, 834 .name = KBUILD_MODNAME,
835 .bus = &fw_bus_type, 835 .bus = &fw_bus_type,
836 .probe = fwspk_probe, 836 .probe = fwspk_probe,
837 .remove = __devexit_p(fwspk_remove), 837 .remove = fwspk_remove,
838 }, 838 },
839 .update = fwspk_bus_reset, 839 .update = fwspk_bus_reset,
840 .id_table = fwspk_id_table, 840 .id_table = fwspk_id_table,