aboutsummaryrefslogtreecommitdiffstats
path: root/sound/soc/tegra/tegra_wm8753.c
diff options
context:
space:
mode:
authorBill Pemberton <wfp5p@virginia.edu>2012-12-07 09:26:33 -0500
committerMark Brown <broonie@opensource.wolfsonmicro.com>2012-12-09 10:31:41 -0500
commit4652a0d0c48324e1227e2b2500d17045840e2fb3 (patch)
tree6c6846b28d7be9ddbe1a6c4dd14af3df7f59f780 /sound/soc/tegra/tegra_wm8753.c
parent468c11754b5b543ab2d03ee5cc2e658f50cb1e59 (diff)
ASoC: tegra: 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/tegra/tegra_wm8753.c')
-rw-r--r--sound/soc/tegra/tegra_wm8753.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sound/soc/tegra/tegra_wm8753.c b/sound/soc/tegra/tegra_wm8753.c
index effe5b41b5f9..c8ef88a67c59 100644
--- a/sound/soc/tegra/tegra_wm8753.c
+++ b/sound/soc/tegra/tegra_wm8753.c
@@ -122,7 +122,7 @@ static struct snd_soc_card snd_soc_tegra_wm8753 = {
122 .fully_routed = true, 122 .fully_routed = true,
123}; 123};
124 124
125static __devinit int tegra_wm8753_driver_probe(struct platform_device *pdev) 125static int tegra_wm8753_driver_probe(struct platform_device *pdev)
126{ 126{
127 struct snd_soc_card *card = &snd_soc_tegra_wm8753; 127 struct snd_soc_card *card = &snd_soc_tegra_wm8753;
128 struct tegra_wm8753 *machine; 128 struct tegra_wm8753 *machine;
@@ -188,7 +188,7 @@ err:
188 return ret; 188 return ret;
189} 189}
190 190
191static int __devexit tegra_wm8753_driver_remove(struct platform_device *pdev) 191static int tegra_wm8753_driver_remove(struct platform_device *pdev)
192{ 192{
193 struct snd_soc_card *card = platform_get_drvdata(pdev); 193 struct snd_soc_card *card = platform_get_drvdata(pdev);
194 struct tegra_wm8753 *machine = snd_soc_card_get_drvdata(card); 194 struct tegra_wm8753 *machine = snd_soc_card_get_drvdata(card);
@@ -213,7 +213,7 @@ static struct platform_driver tegra_wm8753_driver = {
213 .of_match_table = tegra_wm8753_of_match, 213 .of_match_table = tegra_wm8753_of_match,
214 }, 214 },
215 .probe = tegra_wm8753_driver_probe, 215 .probe = tegra_wm8753_driver_probe,
216 .remove = __devexit_p(tegra_wm8753_driver_remove), 216 .remove = tegra_wm8753_driver_remove,
217}; 217};
218module_platform_driver(tegra_wm8753_driver); 218module_platform_driver(tegra_wm8753_driver);
219 219