diff options
author | Bill Pemberton <wfp5p@virginia.edu> | 2012-12-07 15:26:15 +0100 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2012-12-09 16:30:19 +0100 |
commit | fdca21ad4603200ac39268be3a2b93907a6b85e4 (patch) | |
tree | e34a20208bf143b8387490be90841f8be0e25bc3 /sound/soc/samsung/lowland.c | |
parent | ASoC: pxa/hx4700: remove __dev* attributes (diff) | |
download | linux-fdca21ad4603200ac39268be3a2b93907a6b85e4.tar.xz 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/lowland.c')
-rw-r--r-- | sound/soc/samsung/lowland.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sound/soc/samsung/lowland.c b/sound/soc/samsung/lowland.c index a71c31af4e0e..570cf5229508 100644 --- a/sound/soc/samsung/lowland.c +++ b/sound/soc/samsung/lowland.c @@ -180,7 +180,7 @@ static struct snd_soc_card lowland = { .num_dapm_routes = ARRAY_SIZE(audio_paths), }; -static __devinit int lowland_probe(struct platform_device *pdev) +static int lowland_probe(struct platform_device *pdev) { struct snd_soc_card *card = &lowland; int ret; @@ -197,7 +197,7 @@ static __devinit int lowland_probe(struct platform_device *pdev) return 0; } -static int __devexit lowland_remove(struct platform_device *pdev) +static int lowland_remove(struct platform_device *pdev) { struct snd_soc_card *card = platform_get_drvdata(pdev); @@ -213,7 +213,7 @@ static struct platform_driver lowland_driver = { .pm = &snd_soc_pm_ops, }, .probe = lowland_probe, - .remove = __devexit_p(lowland_remove), + .remove = lowland_remove, }; module_platform_driver(lowland_driver); |