summaryrefslogtreecommitdiffstats
path: root/sound/soc/kirkwood/kirkwood-t5325.c
diff options
context:
space:
mode:
authorBill Pemberton <wfp5p@virginia.edu>2012-12-07 09:26:26 -0500
committerMark Brown <broonie@opensource.wolfsonmicro.com>2012-12-10 00:31:24 +0900
commit34e15fbdaa7b1839941d42c5fea96329a53be135 (patch)
tree851e25a07c4186a1b71a527c82d08e5795c53f18 /sound/soc/kirkwood/kirkwood-t5325.c
parent7759f2ea944914534dd3095db8978b75a2e4c982 (diff)
downloadop-kernel-dev-34e15fbdaa7b1839941d42c5fea96329a53be135.zip
op-kernel-dev-34e15fbdaa7b1839941d42c5fea96329a53be135.tar.gz
ASoC: kirkwood: 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/kirkwood/kirkwood-t5325.c')
-rw-r--r--sound/soc/kirkwood/kirkwood-t5325.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sound/soc/kirkwood/kirkwood-t5325.c b/sound/soc/kirkwood/kirkwood-t5325.c
index c67bbc5..1d0ed6f 100644
--- a/sound/soc/kirkwood/kirkwood-t5325.c
+++ b/sound/soc/kirkwood/kirkwood-t5325.c
@@ -92,7 +92,7 @@ static struct snd_soc_card t5325 = {
.num_dapm_routes = ARRAY_SIZE(t5325_route),
};
-static int __devinit t5325_probe(struct platform_device *pdev)
+static int t5325_probe(struct platform_device *pdev)
{
struct snd_soc_card *card = &t5325;
int ret;
@@ -106,7 +106,7 @@ static int __devinit t5325_probe(struct platform_device *pdev)
return ret;
}
-static int __devexit t5325_remove(struct platform_device *pdev)
+static int t5325_remove(struct platform_device *pdev)
{
struct snd_soc_card *card = platform_get_drvdata(pdev);
@@ -120,7 +120,7 @@ static struct platform_driver t5325_driver = {
.owner = THIS_MODULE,
},
.probe = t5325_probe,
- .remove = __devexit_p(t5325_remove),
+ .remove = t5325_remove,
};
module_platform_driver(t5325_driver);
OpenPOWER on IntegriCloud