aboutsummaryrefslogtreecommitdiffstats
path: root/sound/soc/omap/ams-delta.c
diff options
context:
space:
mode:
authorBill Pemberton <wfp5p@virginia.edu>2012-12-07 09:26:29 -0500
committerMark Brown <broonie@opensource.wolfsonmicro.com>2012-12-09 10:31:32 -0500
commit7ff6000627eb996d6d02aa5362ecca7b7ac7ebef (patch)
treeb7a37263d2b1d2e006a718ef06a7e5196bd554eb /sound/soc/omap/ams-delta.c
parentce69ace56a1cdb8a0f22e1e923dbcf74756a6554 (diff)
ASoC: OMAP: remove __dev* attributes
CONFIG_HOTPLUG is going away as an option. As result the __dev* markings will be going away. Remove use of __devinit, __devexit_p, __devinitdata, __devinitconst, and __devexit. Signed-off-by: Bill Pemberton <wfp5p@virginia.edu> Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'sound/soc/omap/ams-delta.c')
-rw-r--r--sound/soc/omap/ams-delta.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sound/soc/omap/ams-delta.c b/sound/soc/omap/ams-delta.c
index d8e96b2cd03e..2600447fa74f 100644
--- a/sound/soc/omap/ams-delta.c
+++ b/sound/soc/omap/ams-delta.c
@@ -575,7 +575,7 @@ static struct snd_soc_card ams_delta_audio_card = {
575}; 575};
576 576
577/* Module init/exit */ 577/* Module init/exit */
578static __devinit int ams_delta_probe(struct platform_device *pdev) 578static int ams_delta_probe(struct platform_device *pdev)
579{ 579{
580 struct snd_soc_card *card = &ams_delta_audio_card; 580 struct snd_soc_card *card = &ams_delta_audio_card;
581 int ret; 581 int ret;
@@ -591,7 +591,7 @@ static __devinit int ams_delta_probe(struct platform_device *pdev)
591 return 0; 591 return 0;
592} 592}
593 593
594static int __devexit ams_delta_remove(struct platform_device *pdev) 594static int ams_delta_remove(struct platform_device *pdev)
595{ 595{
596 struct snd_soc_card *card = platform_get_drvdata(pdev); 596 struct snd_soc_card *card = platform_get_drvdata(pdev);
597 597
@@ -616,7 +616,7 @@ static struct platform_driver ams_delta_driver = {
616 .owner = THIS_MODULE, 616 .owner = THIS_MODULE,
617 }, 617 },
618 .probe = ams_delta_probe, 618 .probe = ams_delta_probe,
619 .remove = __devexit_p(ams_delta_remove), 619 .remove = ams_delta_remove,
620}; 620};
621 621
622module_platform_driver(ams_delta_driver); 622module_platform_driver(ams_delta_driver);