aboutsummaryrefslogtreecommitdiffstats
path: root/sound/soc/pxa/pxa-ssp.c
diff options
context:
space:
mode:
authorBill Pemberton <wfp5p@virginia.edu>2012-12-07 09:26:17 -0500
committerMark Brown <broonie@opensource.wolfsonmicro.com>2012-12-09 10:30:34 -0500
commit570f6fe1c35481a2f70f848216978a68b96dc92a (patch)
tree590560643f3f00db45e10207508223b11647a5aa /sound/soc/pxa/pxa-ssp.c
parenta0a3d518c33853940936fae5ed579509fe5966eb (diff)
ASoC: pxa: 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> Acked-by: Haojian Zhuang <haojian.zhuang@gmail.com> Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'sound/soc/pxa/pxa-ssp.c')
-rw-r--r--sound/soc/pxa/pxa-ssp.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sound/soc/pxa/pxa-ssp.c b/sound/soc/pxa/pxa-ssp.c
index 4da5fc55c7ee..d3eb0c2eec77 100644
--- a/sound/soc/pxa/pxa-ssp.c
+++ b/sound/soc/pxa/pxa-ssp.c
@@ -794,12 +794,12 @@ static struct snd_soc_dai_driver pxa_ssp_dai = {
794 .ops = &pxa_ssp_dai_ops, 794 .ops = &pxa_ssp_dai_ops,
795}; 795};
796 796
797static __devinit int asoc_ssp_probe(struct platform_device *pdev) 797static int asoc_ssp_probe(struct platform_device *pdev)
798{ 798{
799 return snd_soc_register_dai(&pdev->dev, &pxa_ssp_dai); 799 return snd_soc_register_dai(&pdev->dev, &pxa_ssp_dai);
800} 800}
801 801
802static int __devexit asoc_ssp_remove(struct platform_device *pdev) 802static int asoc_ssp_remove(struct platform_device *pdev)
803{ 803{
804 snd_soc_unregister_dai(&pdev->dev); 804 snd_soc_unregister_dai(&pdev->dev);
805 return 0; 805 return 0;
@@ -812,7 +812,7 @@ static struct platform_driver asoc_ssp_driver = {
812 }, 812 },
813 813
814 .probe = asoc_ssp_probe, 814 .probe = asoc_ssp_probe,
815 .remove = __devexit_p(asoc_ssp_remove), 815 .remove = asoc_ssp_remove,
816}; 816};
817 817
818module_platform_driver(asoc_ssp_driver); 818module_platform_driver(asoc_ssp_driver);