aboutsummaryrefslogtreecommitdiffstats
path: root/sound/soc/cirrus/ep93xx-i2s.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/ep93xx-i2s.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/ep93xx-i2s.c')
-rw-r--r--sound/soc/cirrus/ep93xx-i2s.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/soc/cirrus/ep93xx-i2s.c b/sound/soc/cirrus/ep93xx-i2s.c
index ac4a7515e7be..3365d4e843b7 100644
--- a/sound/soc/cirrus/ep93xx-i2s.c
+++ b/sound/soc/cirrus/ep93xx-i2s.c
@@ -422,7 +422,7 @@ fail:
422 return err; 422 return err;
423} 423}
424 424
425static int __devexit ep93xx_i2s_remove(struct platform_device *pdev) 425static int ep93xx_i2s_remove(struct platform_device *pdev)
426{ 426{
427 struct ep93xx_i2s_info *info = dev_get_drvdata(&pdev->dev); 427 struct ep93xx_i2s_info *info = dev_get_drvdata(&pdev->dev);
428 428
@@ -436,7 +436,7 @@ static int __devexit ep93xx_i2s_remove(struct platform_device *pdev)
436 436
437static struct platform_driver ep93xx_i2s_driver = { 437static struct platform_driver ep93xx_i2s_driver = {
438 .probe = ep93xx_i2s_probe, 438 .probe = ep93xx_i2s_probe,
439 .remove = __devexit_p(ep93xx_i2s_remove), 439 .remove = ep93xx_i2s_remove,
440 .driver = { 440 .driver = {
441 .name = "ep93xx-i2s", 441 .name = "ep93xx-i2s",
442 .owner = THIS_MODULE, 442 .owner = THIS_MODULE,