aboutsummaryrefslogtreecommitdiffstats
path: root/sound/soc/atmel
diff options
context:
space:
mode:
authorBill Pemberton <wfp5p@virginia.edu>2012-12-07 09:26:21 -0500
committerMark Brown <broonie@opensource.wolfsonmicro.com>2012-12-09 10:31:03 -0500
commit71d14ea60ad81a685cc9a879d2b9a89494cdba8f (patch)
treed5b2cc014da2d8a8772776a66a28dcace882a747 /sound/soc/atmel
parent05c4c6f7072cff531c62322e07a156b1501df7a5 (diff)
ASoC: atmel: 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/atmel')
-rw-r--r--sound/soc/atmel/sam9g20_wm8731.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sound/soc/atmel/sam9g20_wm8731.c b/sound/soc/atmel/sam9g20_wm8731.c
index 0744610e53dd..da976291da9e 100644
--- a/sound/soc/atmel/sam9g20_wm8731.c
+++ b/sound/soc/atmel/sam9g20_wm8731.c
@@ -197,7 +197,7 @@ static struct snd_soc_card snd_soc_at91sam9g20ek = {
197 .set_bias_level = at91sam9g20ek_set_bias_level, 197 .set_bias_level = at91sam9g20ek_set_bias_level,
198}; 198};
199 199
200static int __devinit at91sam9g20ek_audio_probe(struct platform_device *pdev) 200static int at91sam9g20ek_audio_probe(struct platform_device *pdev)
201{ 201{
202 struct device_node *np = pdev->dev.of_node; 202 struct device_node *np = pdev->dev.of_node;
203 struct device_node *codec_np, *cpu_np; 203 struct device_node *codec_np, *cpu_np;
@@ -301,7 +301,7 @@ err:
301 return ret; 301 return ret;
302} 302}
303 303
304static int __devexit at91sam9g20ek_audio_remove(struct platform_device *pdev) 304static int at91sam9g20ek_audio_remove(struct platform_device *pdev)
305{ 305{
306 struct snd_soc_card *card = platform_get_drvdata(pdev); 306 struct snd_soc_card *card = platform_get_drvdata(pdev);
307 307
@@ -328,7 +328,7 @@ static struct platform_driver at91sam9g20ek_audio_driver = {
328 .of_match_table = of_match_ptr(at91sam9g20ek_wm8731_dt_ids), 328 .of_match_table = of_match_ptr(at91sam9g20ek_wm8731_dt_ids),
329 }, 329 },
330 .probe = at91sam9g20ek_audio_probe, 330 .probe = at91sam9g20ek_audio_probe,
331 .remove = __devexit_p(at91sam9g20ek_audio_remove), 331 .remove = at91sam9g20ek_audio_remove,
332}; 332};
333 333
334module_platform_driver(at91sam9g20ek_audio_driver); 334module_platform_driver(at91sam9g20ek_audio_driver);