aboutsummaryrefslogtreecommitdiffstats
path: root/sound/soc/blackfin/bf5xx-ac97.c
diff options
context:
space:
mode:
Diffstat (limited to 'sound/soc/blackfin/bf5xx-ac97.c')
-rw-r--r--sound/soc/blackfin/bf5xx-ac97.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sound/soc/blackfin/bf5xx-ac97.c b/sound/soc/blackfin/bf5xx-ac97.c
index f4e9dc4e262e..8e41bcb020eb 100644
--- a/sound/soc/blackfin/bf5xx-ac97.c
+++ b/sound/soc/blackfin/bf5xx-ac97.c
@@ -282,7 +282,7 @@ static struct snd_soc_dai_driver bfin_ac97_dai = {
282 .formats = SNDRV_PCM_FMTBIT_S16_LE, }, 282 .formats = SNDRV_PCM_FMTBIT_S16_LE, },
283}; 283};
284 284
285static int __devinit asoc_bfin_ac97_probe(struct platform_device *pdev) 285static int asoc_bfin_ac97_probe(struct platform_device *pdev)
286{ 286{
287 struct sport_device *sport_handle; 287 struct sport_device *sport_handle;
288 int ret; 288 int ret;
@@ -352,7 +352,7 @@ gpio_err:
352 return ret; 352 return ret;
353} 353}
354 354
355static int __devexit asoc_bfin_ac97_remove(struct platform_device *pdev) 355static int asoc_bfin_ac97_remove(struct platform_device *pdev)
356{ 356{
357 struct sport_device *sport_handle = platform_get_drvdata(pdev); 357 struct sport_device *sport_handle = platform_get_drvdata(pdev);
358 358
@@ -372,7 +372,7 @@ static struct platform_driver asoc_bfin_ac97_driver = {
372 }, 372 },
373 373
374 .probe = asoc_bfin_ac97_probe, 374 .probe = asoc_bfin_ac97_probe,
375 .remove = __devexit_p(asoc_bfin_ac97_remove), 375 .remove = asoc_bfin_ac97_remove,
376}; 376};
377 377
378module_platform_driver(asoc_bfin_ac97_driver); 378module_platform_driver(asoc_bfin_ac97_driver);