aboutsummaryrefslogtreecommitdiffstats
path: root/sound/soc/fsl/imx-ssi.c
diff options
context:
space:
mode:
authorBill Pemberton <wfp5p@virginia.edu>2012-12-07 09:26:16 -0500
committerMark Brown <broonie@opensource.wolfsonmicro.com>2012-12-09 10:30:25 -0500
commita0a3d518c33853940936fae5ed579509fe5966eb (patch)
treee3ba6258704ee8e4597e04246fa9aa3995e20a73 /sound/soc/fsl/imx-ssi.c
parentfdca21ad4603200ac39268be3a2b93907a6b85e4 (diff)
ASoC: fsl: 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/fsl/imx-ssi.c')
-rw-r--r--sound/soc/fsl/imx-ssi.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/soc/fsl/imx-ssi.c b/sound/soc/fsl/imx-ssi.c
index 006f7d465ed2..2c8d89eecdcf 100644
--- a/sound/soc/fsl/imx-ssi.c
+++ b/sound/soc/fsl/imx-ssi.c
@@ -639,7 +639,7 @@ failed_clk:
639 return ret; 639 return ret;
640} 640}
641 641
642static int __devexit imx_ssi_remove(struct platform_device *pdev) 642static int imx_ssi_remove(struct platform_device *pdev)
643{ 643{
644 struct resource *res = platform_get_resource(pdev, IORESOURCE_MEM, 0); 644 struct resource *res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
645 struct imx_ssi *ssi = platform_get_drvdata(pdev); 645 struct imx_ssi *ssi = platform_get_drvdata(pdev);
@@ -660,7 +660,7 @@ static int __devexit imx_ssi_remove(struct platform_device *pdev)
660 660
661static struct platform_driver imx_ssi_driver = { 661static struct platform_driver imx_ssi_driver = {
662 .probe = imx_ssi_probe, 662 .probe = imx_ssi_probe,
663 .remove = __devexit_p(imx_ssi_remove), 663 .remove = imx_ssi_remove,
664 664
665 .driver = { 665 .driver = {
666 .name = "imx-ssi", 666 .name = "imx-ssi",