aboutsummaryrefslogtreecommitdiffstats
path: root/sound/soc/pxa/poodle.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/poodle.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/poodle.c')
-rw-r--r--sound/soc/pxa/poodle.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sound/soc/pxa/poodle.c b/sound/soc/pxa/poodle.c
index d2cc81735036..fafe46355c31 100644
--- a/sound/soc/pxa/poodle.c
+++ b/sound/soc/pxa/poodle.c
@@ -269,7 +269,7 @@ static struct snd_soc_card poodle = {
269 .num_dapm_routes = ARRAY_SIZE(poodle_audio_map), 269 .num_dapm_routes = ARRAY_SIZE(poodle_audio_map),
270}; 270};
271 271
272static int __devinit poodle_probe(struct platform_device *pdev) 272static int poodle_probe(struct platform_device *pdev)
273{ 273{
274 struct snd_soc_card *card = &poodle; 274 struct snd_soc_card *card = &poodle;
275 int ret; 275 int ret;
@@ -291,7 +291,7 @@ static int __devinit poodle_probe(struct platform_device *pdev)
291 return ret; 291 return ret;
292} 292}
293 293
294static int __devexit poodle_remove(struct platform_device *pdev) 294static int poodle_remove(struct platform_device *pdev)
295{ 295{
296 struct snd_soc_card *card = platform_get_drvdata(pdev); 296 struct snd_soc_card *card = platform_get_drvdata(pdev);
297 297
@@ -305,7 +305,7 @@ static struct platform_driver poodle_driver = {
305 .owner = THIS_MODULE, 305 .owner = THIS_MODULE,
306 }, 306 },
307 .probe = poodle_probe, 307 .probe = poodle_probe,
308 .remove = __devexit_p(poodle_remove), 308 .remove = poodle_remove,
309}; 309};
310 310
311module_platform_driver(poodle_driver); 311module_platform_driver(poodle_driver);