diff options
Diffstat (limited to 'sound/ppc/powermac.c')
-rw-r--r-- | sound/ppc/powermac.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sound/ppc/powermac.c b/sound/ppc/powermac.c index 210cafe04890..09fc848d32ec 100644 --- a/sound/ppc/powermac.c +++ b/sound/ppc/powermac.c | |||
@@ -51,7 +51,7 @@ static struct platform_device *device; | |||
51 | /* | 51 | /* |
52 | */ | 52 | */ |
53 | 53 | ||
54 | static int __devinit snd_pmac_probe(struct platform_device *devptr) | 54 | static int snd_pmac_probe(struct platform_device *devptr) |
55 | { | 55 | { |
56 | struct snd_card *card; | 56 | struct snd_card *card; |
57 | struct snd_pmac *chip; | 57 | struct snd_pmac *chip; |
@@ -136,7 +136,7 @@ __error: | |||
136 | } | 136 | } |
137 | 137 | ||
138 | 138 | ||
139 | static int __devexit snd_pmac_remove(struct platform_device *devptr) | 139 | static int snd_pmac_remove(struct platform_device *devptr) |
140 | { | 140 | { |
141 | snd_card_free(platform_get_drvdata(devptr)); | 141 | snd_card_free(platform_get_drvdata(devptr)); |
142 | platform_set_drvdata(devptr, NULL); | 142 | platform_set_drvdata(devptr, NULL); |
@@ -168,7 +168,7 @@ static SIMPLE_DEV_PM_OPS(snd_pmac_pm, snd_pmac_driver_suspend, snd_pmac_driver_r | |||
168 | 168 | ||
169 | static struct platform_driver snd_pmac_driver = { | 169 | static struct platform_driver snd_pmac_driver = { |
170 | .probe = snd_pmac_probe, | 170 | .probe = snd_pmac_probe, |
171 | .remove = __devexit_p(snd_pmac_remove), | 171 | .remove = snd_pmac_remove, |
172 | .driver = { | 172 | .driver = { |
173 | .name = SND_PMAC_DRIVER, | 173 | .name = SND_PMAC_DRIVER, |
174 | .owner = THIS_MODULE, | 174 | .owner = THIS_MODULE, |