diff options
Diffstat (limited to 'sound/arm/pxa2xx-ac97.c')
-rw-r--r-- | sound/arm/pxa2xx-ac97.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sound/arm/pxa2xx-ac97.c b/sound/arm/pxa2xx-ac97.c index 4e1fda75c1c9..ec54be4efff0 100644 --- a/sound/arm/pxa2xx-ac97.c +++ b/sound/arm/pxa2xx-ac97.c | |||
@@ -163,7 +163,7 @@ static int pxa2xx_ac97_resume(struct device *dev) | |||
163 | static SIMPLE_DEV_PM_OPS(pxa2xx_ac97_pm_ops, pxa2xx_ac97_suspend, pxa2xx_ac97_resume); | 163 | static SIMPLE_DEV_PM_OPS(pxa2xx_ac97_pm_ops, pxa2xx_ac97_suspend, pxa2xx_ac97_resume); |
164 | #endif | 164 | #endif |
165 | 165 | ||
166 | static int __devinit pxa2xx_ac97_probe(struct platform_device *dev) | 166 | static int pxa2xx_ac97_probe(struct platform_device *dev) |
167 | { | 167 | { |
168 | struct snd_card *card; | 168 | struct snd_card *card; |
169 | struct snd_ac97_bus *ac97_bus; | 169 | struct snd_ac97_bus *ac97_bus; |
@@ -224,7 +224,7 @@ err_dev: | |||
224 | return ret; | 224 | return ret; |
225 | } | 225 | } |
226 | 226 | ||
227 | static int __devexit pxa2xx_ac97_remove(struct platform_device *dev) | 227 | static int pxa2xx_ac97_remove(struct platform_device *dev) |
228 | { | 228 | { |
229 | struct snd_card *card = platform_get_drvdata(dev); | 229 | struct snd_card *card = platform_get_drvdata(dev); |
230 | 230 | ||
@@ -239,7 +239,7 @@ static int __devexit pxa2xx_ac97_remove(struct platform_device *dev) | |||
239 | 239 | ||
240 | static struct platform_driver pxa2xx_ac97_driver = { | 240 | static struct platform_driver pxa2xx_ac97_driver = { |
241 | .probe = pxa2xx_ac97_probe, | 241 | .probe = pxa2xx_ac97_probe, |
242 | .remove = __devexit_p(pxa2xx_ac97_remove), | 242 | .remove = pxa2xx_ac97_remove, |
243 | .driver = { | 243 | .driver = { |
244 | .name = "pxa2xx-ac97", | 244 | .name = "pxa2xx-ac97", |
245 | .owner = THIS_MODULE, | 245 | .owner = THIS_MODULE, |