aboutsummaryrefslogtreecommitdiffstats
path: root/sound/soc/pxa/corgi.c
diff options
context:
space:
mode:
Diffstat (limited to 'sound/soc/pxa/corgi.c')
-rw-r--r--sound/soc/pxa/corgi.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sound/soc/pxa/corgi.c b/sound/soc/pxa/corgi.c
index 863367ad89c..f4cce1e8011 100644
--- a/sound/soc/pxa/corgi.c
+++ b/sound/soc/pxa/corgi.c
@@ -303,7 +303,7 @@ static struct snd_soc_card corgi = {
303 .num_dapm_routes = ARRAY_SIZE(corgi_audio_map), 303 .num_dapm_routes = ARRAY_SIZE(corgi_audio_map),
304}; 304};
305 305
306static int __devinit corgi_probe(struct platform_device *pdev) 306static int corgi_probe(struct platform_device *pdev)
307{ 307{
308 struct snd_soc_card *card = &corgi; 308 struct snd_soc_card *card = &corgi;
309 int ret; 309 int ret;
@@ -317,7 +317,7 @@ static int __devinit corgi_probe(struct platform_device *pdev)
317 return ret; 317 return ret;
318} 318}
319 319
320static int __devexit corgi_remove(struct platform_device *pdev) 320static int corgi_remove(struct platform_device *pdev)
321{ 321{
322 struct snd_soc_card *card = platform_get_drvdata(pdev); 322 struct snd_soc_card *card = platform_get_drvdata(pdev);
323 323
@@ -331,7 +331,7 @@ static struct platform_driver corgi_driver = {
331 .owner = THIS_MODULE, 331 .owner = THIS_MODULE,
332 }, 332 },
333 .probe = corgi_probe, 333 .probe = corgi_probe,
334 .remove = __devexit_p(corgi_remove), 334 .remove = corgi_remove,
335}; 335};
336 336
337module_platform_driver(corgi_driver); 337module_platform_driver(corgi_driver);