aboutsummaryrefslogtreecommitdiffstats
path: root/sound/soc/pxa/ttc-dkb.c
diff options
context:
space:
mode:
authorBill Pemberton <wfp5p@virginia.edu>2012-12-07 09:26:17 -0500
committerMark Brown <broonie@opensource.wolfsonmicro.com>2012-12-09 10:30:34 -0500
commit570f6fe1c35481a2f70f848216978a68b96dc92a (patch)
tree590560643f3f00db45e10207508223b11647a5aa /sound/soc/pxa/ttc-dkb.c
parenta0a3d518c33853940936fae5ed579509fe5966eb (diff)
ASoC: pxa: 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> Acked-by: Haojian Zhuang <haojian.zhuang@gmail.com> Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'sound/soc/pxa/ttc-dkb.c')
-rw-r--r--sound/soc/pxa/ttc-dkb.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sound/soc/pxa/ttc-dkb.c b/sound/soc/pxa/ttc-dkb.c
index 935491a8a770..f4ea4f6663a2 100644
--- a/sound/soc/pxa/ttc-dkb.c
+++ b/sound/soc/pxa/ttc-dkb.c
@@ -131,7 +131,7 @@ static struct snd_soc_card ttc_dkb_card = {
131 .num_dapm_routes = ARRAY_SIZE(ttc_audio_map), 131 .num_dapm_routes = ARRAY_SIZE(ttc_audio_map),
132}; 132};
133 133
134static int __devinit ttc_dkb_probe(struct platform_device *pdev) 134static int ttc_dkb_probe(struct platform_device *pdev)
135{ 135{
136 struct snd_soc_card *card = &ttc_dkb_card; 136 struct snd_soc_card *card = &ttc_dkb_card;
137 int ret; 137 int ret;
@@ -146,7 +146,7 @@ static int __devinit ttc_dkb_probe(struct platform_device *pdev)
146 return ret; 146 return ret;
147} 147}
148 148
149static int __devexit ttc_dkb_remove(struct platform_device *pdev) 149static int ttc_dkb_remove(struct platform_device *pdev)
150{ 150{
151 struct snd_soc_card *card = platform_get_drvdata(pdev); 151 struct snd_soc_card *card = platform_get_drvdata(pdev);
152 152
@@ -161,7 +161,7 @@ static struct platform_driver ttc_dkb_driver = {
161 .owner = THIS_MODULE, 161 .owner = THIS_MODULE,
162 }, 162 },
163 .probe = ttc_dkb_probe, 163 .probe = ttc_dkb_probe,
164 .remove = __devexit_p(ttc_dkb_remove), 164 .remove = ttc_dkb_remove,
165}; 165};
166 166
167module_platform_driver(ttc_dkb_driver); 167module_platform_driver(ttc_dkb_driver);