aboutsummaryrefslogtreecommitdiffstats
path: root/sound/soc/cirrus/simone.c
diff options
context:
space:
mode:
authorBill Pemberton <wfp5p@virginia.edu>2012-12-07 09:26:23 -0500
committerMark Brown <broonie@opensource.wolfsonmicro.com>2012-12-09 10:31:09 -0500
commit145e2879560e3e99ae46e26f510e3b4a26cc03d4 (patch)
tree4347320aab645131b0c5023748468514eed24206 /sound/soc/cirrus/simone.c
parent5c658be06175ec1dc8c80c8e28404b729f48df1b (diff)
ASoC: cirrus: 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/cirrus/simone.c')
-rw-r--r--sound/soc/cirrus/simone.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sound/soc/cirrus/simone.c b/sound/soc/cirrus/simone.c
index dd997094eb30..a397bb0d8179 100644
--- a/sound/soc/cirrus/simone.c
+++ b/sound/soc/cirrus/simone.c
@@ -41,7 +41,7 @@ static struct snd_soc_card snd_soc_simone = {
41 41
42static struct platform_device *simone_snd_ac97_device; 42static struct platform_device *simone_snd_ac97_device;
43 43
44static int __devinit simone_probe(struct platform_device *pdev) 44static int simone_probe(struct platform_device *pdev)
45{ 45{
46 struct snd_soc_card *card = &snd_soc_simone; 46 struct snd_soc_card *card = &snd_soc_simone;
47 int ret; 47 int ret;
@@ -63,7 +63,7 @@ static int __devinit simone_probe(struct platform_device *pdev)
63 return ret; 63 return ret;
64} 64}
65 65
66static int __devexit simone_remove(struct platform_device *pdev) 66static int simone_remove(struct platform_device *pdev)
67{ 67{
68 struct snd_soc_card *card = platform_get_drvdata(pdev); 68 struct snd_soc_card *card = platform_get_drvdata(pdev);
69 69
@@ -79,7 +79,7 @@ static struct platform_driver simone_driver = {
79 .owner = THIS_MODULE, 79 .owner = THIS_MODULE,
80 }, 80 },
81 .probe = simone_probe, 81 .probe = simone_probe,
82 .remove = __devexit_p(simone_remove), 82 .remove = simone_remove,
83}; 83};
84 84
85module_platform_driver(simone_driver); 85module_platform_driver(simone_driver);