aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/sound/soc/samsung/s3c24xx_simtec_hermes.c
diff options
context:
space:
mode:
authorBill Pemberton <wfp5p@virginia.edu>2012-12-07 09:26:15 -0500
committerMark Brown <broonie@opensource.wolfsonmicro.com>2012-12-10 00:30:19 +0900
commitfdca21ad4603200ac39268be3a2b93907a6b85e4 (patch)
treee34a20208bf143b8387490be90841f8be0e25bc3 /sound/soc/samsung/s3c24xx_simtec_hermes.c
parentASoC: pxa/hx4700: remove __dev* attributes (diff)
downloadwireguard-linux-fdca21ad4603200ac39268be3a2b93907a6b85e4.tar.xz
wireguard-linux-fdca21ad4603200ac39268be3a2b93907a6b85e4.zip
ASoC: Samsung: 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/samsung/s3c24xx_simtec_hermes.c')
-rw-r--r--sound/soc/samsung/s3c24xx_simtec_hermes.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/soc/samsung/s3c24xx_simtec_hermes.c b/sound/soc/samsung/s3c24xx_simtec_hermes.c
index befabe8979f7..d8a0543cae5e 100644
--- a/sound/soc/samsung/s3c24xx_simtec_hermes.c
+++ b/sound/soc/samsung/s3c24xx_simtec_hermes.c
@@ -99,7 +99,7 @@ static struct snd_soc_card snd_soc_machine_simtec_aic33 = {
.num_dapm_routes = ARRAY_SIZE(base_map),
};
-static int __devinit simtec_audio_hermes_probe(struct platform_device *pd)
+static int simtec_audio_hermes_probe(struct platform_device *pd)
{
dev_info(&pd->dev, "probing....\n");
return simtec_audio_core_probe(pd, &snd_soc_machine_simtec_aic33);
@@ -112,7 +112,7 @@ static struct platform_driver simtec_audio_hermes_platdrv = {
.pm = simtec_audio_pm,
},
.probe = simtec_audio_hermes_probe,
- .remove = __devexit_p(simtec_audio_remove),
+ .remove = simtec_audio_remove,
};
module_platform_driver(simtec_audio_hermes_platdrv);