summaryrefslogtreecommitdiffstats
path: root/sound/soc/blackfin/bfin-eval-adau1373.c
diff options
context:
space:
mode:
authorBill Pemberton2012-12-07 15:26:13 +0100
committerMark Brown2012-12-09 16:29:39 +0100
commitdca66dab760b1a2abd9c577ba85ba051d79ee206 (patch)
tree383c1cb96257790d3d148d03cedd98ed664e02d5 /sound/soc/blackfin/bfin-eval-adau1373.c
parentMerge remote-tracking branch 'asoc/topic/wm9090' into asoc-next (diff)
downloadkernel-qcow2-linux-dca66dab760b1a2abd9c577ba85ba051d79ee206.tar.gz
kernel-qcow2-linux-dca66dab760b1a2abd9c577ba85ba051d79ee206.tar.xz
kernel-qcow2-linux-dca66dab760b1a2abd9c577ba85ba051d79ee206.zip
ASoC: blackfin: 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/blackfin/bfin-eval-adau1373.c')
-rw-r--r--sound/soc/blackfin/bfin-eval-adau1373.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/soc/blackfin/bfin-eval-adau1373.c b/sound/soc/blackfin/bfin-eval-adau1373.c
index f3adbdbdd5e1..4ef9683bcad8 100644
--- a/sound/soc/blackfin/bfin-eval-adau1373.c
+++ b/sound/soc/blackfin/bfin-eval-adau1373.c
@@ -157,7 +157,7 @@ static int bfin_eval_adau1373_probe(struct platform_device *pdev)
return snd_soc_register_card(&bfin_eval_adau1373);
}
-static int __devexit bfin_eval_adau1373_remove(struct platform_device *pdev)
+static int bfin_eval_adau1373_remove(struct platform_device *pdev)
{
struct snd_soc_card *card = platform_get_drvdata(pdev);
@@ -173,7 +173,7 @@ static struct platform_driver bfin_eval_adau1373_driver = {
.pm = &snd_soc_pm_ops,
},
.probe = bfin_eval_adau1373_probe,
- .remove = __devexit_p(bfin_eval_adau1373_remove),
+ .remove = bfin_eval_adau1373_remove,
};
module_platform_driver(bfin_eval_adau1373_driver);