aboutsummaryrefslogtreecommitdiffstats
path: root/sound/soc/pxa/palm27x.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/palm27x.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/palm27x.c')
-rw-r--r--sound/soc/pxa/palm27x.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/soc/pxa/palm27x.c b/sound/soc/pxa/palm27x.c
index aa3da91907c6..2074e2daf9c6 100644
--- a/sound/soc/pxa/palm27x.c
+++ b/sound/soc/pxa/palm27x.c
@@ -187,7 +187,7 @@ put_device:
187 return ret; 187 return ret;
188} 188}
189 189
190static int __devexit palm27x_asoc_remove(struct platform_device *pdev) 190static int palm27x_asoc_remove(struct platform_device *pdev)
191{ 191{
192 platform_device_unregister(palm27x_snd_device); 192 platform_device_unregister(palm27x_snd_device);
193 return 0; 193 return 0;
@@ -195,7 +195,7 @@ static int __devexit palm27x_asoc_remove(struct platform_device *pdev)
195 195
196static struct platform_driver palm27x_wm9712_driver = { 196static struct platform_driver palm27x_wm9712_driver = {
197 .probe = palm27x_asoc_probe, 197 .probe = palm27x_asoc_probe,
198 .remove = __devexit_p(palm27x_asoc_remove), 198 .remove = palm27x_asoc_remove,
199 .driver = { 199 .driver = {
200 .name = "palm27x-asoc", 200 .name = "palm27x-asoc",
201 .owner = THIS_MODULE, 201 .owner = THIS_MODULE,