aboutsummaryrefslogtreecommitdiffstats
path: root/sound/soc/au1x/ac97c.c
diff options
context:
space:
mode:
authorBill Pemberton <wfp5p@virginia.edu>2012-12-07 09:26:22 -0500
committerMark Brown <broonie@opensource.wolfsonmicro.com>2012-12-09 10:31:06 -0500
commit5c658be06175ec1dc8c80c8e28404b729f48df1b (patch)
tree27da53becd9aae32c410e2a686a005c535bb3c38 /sound/soc/au1x/ac97c.c
parent71d14ea60ad81a685cc9a879d2b9a89494cdba8f (diff)
ASoC: au1x: 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/au1x/ac97c.c')
-rw-r--r--sound/soc/au1x/ac97c.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sound/soc/au1x/ac97c.c b/sound/soc/au1x/ac97c.c
index c5ac2449563a..ea7d9d157022 100644
--- a/sound/soc/au1x/ac97c.c
+++ b/sound/soc/au1x/ac97c.c
@@ -223,7 +223,7 @@ static struct snd_soc_dai_driver au1xac97c_dai_driver = {
223 .ops = &alchemy_ac97c_ops, 223 .ops = &alchemy_ac97c_ops,
224}; 224};
225 225
226static int __devinit au1xac97c_drvprobe(struct platform_device *pdev) 226static int au1xac97c_drvprobe(struct platform_device *pdev)
227{ 227{
228 int ret; 228 int ret;
229 struct resource *iores, *dmares; 229 struct resource *iores, *dmares;
@@ -276,7 +276,7 @@ static int __devinit au1xac97c_drvprobe(struct platform_device *pdev)
276 return 0; 276 return 0;
277} 277}
278 278
279static int __devexit au1xac97c_drvremove(struct platform_device *pdev) 279static int au1xac97c_drvremove(struct platform_device *pdev)
280{ 280{
281 struct au1xpsc_audio_data *ctx = platform_get_drvdata(pdev); 281 struct au1xpsc_audio_data *ctx = platform_get_drvdata(pdev);
282 282
@@ -330,7 +330,7 @@ static struct platform_driver au1xac97c_driver = {
330 .pm = AU1XPSCAC97_PMOPS, 330 .pm = AU1XPSCAC97_PMOPS,
331 }, 331 },
332 .probe = au1xac97c_drvprobe, 332 .probe = au1xac97c_drvprobe,
333 .remove = __devexit_p(au1xac97c_drvremove), 333 .remove = au1xac97c_drvremove,
334}; 334};
335 335
336static int __init au1xac97c_load(void) 336static int __init au1xac97c_load(void)