Commit fd582736 authored by Bill Pemberton's avatar Bill Pemberton Committed by Mark Brown

ASoC: mxs: 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: default avatarBill Pemberton <wfp5p@virginia.edu>
Signed-off-by: default avatarMark Brown <broonie@opensource.wolfsonmicro.com>
parent 34e15fbd
...@@ -220,13 +220,13 @@ static struct snd_soc_platform_driver mxs_soc_platform = { ...@@ -220,13 +220,13 @@ static struct snd_soc_platform_driver mxs_soc_platform = {
.pcm_free = mxs_pcm_free, .pcm_free = mxs_pcm_free,
}; };
int __devinit mxs_pcm_platform_register(struct device *dev) int mxs_pcm_platform_register(struct device *dev)
{ {
return snd_soc_register_platform(dev, &mxs_soc_platform); return snd_soc_register_platform(dev, &mxs_soc_platform);
} }
EXPORT_SYMBOL_GPL(mxs_pcm_platform_register); EXPORT_SYMBOL_GPL(mxs_pcm_platform_register);
void __devexit mxs_pcm_platform_unregister(struct device *dev) void mxs_pcm_platform_unregister(struct device *dev)
{ {
snd_soc_unregister_platform(dev); snd_soc_unregister_platform(dev);
} }
......
...@@ -657,7 +657,7 @@ static irqreturn_t mxs_saif_irq(int irq, void *dev_id) ...@@ -657,7 +657,7 @@ static irqreturn_t mxs_saif_irq(int irq, void *dev_id)
return IRQ_HANDLED; return IRQ_HANDLED;
} }
static int __devinit mxs_saif_probe(struct platform_device *pdev) static int mxs_saif_probe(struct platform_device *pdev)
{ {
struct device_node *np = pdev->dev.of_node; struct device_node *np = pdev->dev.of_node;
struct resource *iores, *dmares; struct resource *iores, *dmares;
...@@ -792,7 +792,7 @@ static int __devinit mxs_saif_probe(struct platform_device *pdev) ...@@ -792,7 +792,7 @@ static int __devinit mxs_saif_probe(struct platform_device *pdev)
return ret; return ret;
} }
static int __devexit mxs_saif_remove(struct platform_device *pdev) static int mxs_saif_remove(struct platform_device *pdev)
{ {
mxs_pcm_platform_unregister(&pdev->dev); mxs_pcm_platform_unregister(&pdev->dev);
snd_soc_unregister_dai(&pdev->dev); snd_soc_unregister_dai(&pdev->dev);
...@@ -808,7 +808,7 @@ MODULE_DEVICE_TABLE(of, mxs_saif_dt_ids); ...@@ -808,7 +808,7 @@ MODULE_DEVICE_TABLE(of, mxs_saif_dt_ids);
static struct platform_driver mxs_saif_driver = { static struct platform_driver mxs_saif_driver = {
.probe = mxs_saif_probe, .probe = mxs_saif_probe,
.remove = __devexit_p(mxs_saif_remove), .remove = mxs_saif_remove,
.driver = { .driver = {
.name = "mxs-saif", .name = "mxs-saif",
......
...@@ -112,7 +112,7 @@ static struct snd_soc_card mxs_sgtl5000 = { ...@@ -112,7 +112,7 @@ static struct snd_soc_card mxs_sgtl5000 = {
.num_links = ARRAY_SIZE(mxs_sgtl5000_dai), .num_links = ARRAY_SIZE(mxs_sgtl5000_dai),
}; };
static int __devinit mxs_sgtl5000_probe_dt(struct platform_device *pdev) static int mxs_sgtl5000_probe_dt(struct platform_device *pdev)
{ {
struct device_node *np = pdev->dev.of_node; struct device_node *np = pdev->dev.of_node;
struct device_node *saif_np[2], *codec_np; struct device_node *saif_np[2], *codec_np;
...@@ -145,7 +145,7 @@ static int __devinit mxs_sgtl5000_probe_dt(struct platform_device *pdev) ...@@ -145,7 +145,7 @@ static int __devinit mxs_sgtl5000_probe_dt(struct platform_device *pdev)
return ret; return ret;
} }
static int __devinit mxs_sgtl5000_probe(struct platform_device *pdev) static int mxs_sgtl5000_probe(struct platform_device *pdev)
{ {
struct snd_soc_card *card = &mxs_sgtl5000; struct snd_soc_card *card = &mxs_sgtl5000;
int ret; int ret;
...@@ -176,7 +176,7 @@ static int __devinit mxs_sgtl5000_probe(struct platform_device *pdev) ...@@ -176,7 +176,7 @@ static int __devinit mxs_sgtl5000_probe(struct platform_device *pdev)
return 0; return 0;
} }
static int __devexit mxs_sgtl5000_remove(struct platform_device *pdev) static int mxs_sgtl5000_remove(struct platform_device *pdev)
{ {
struct snd_soc_card *card = platform_get_drvdata(pdev); struct snd_soc_card *card = platform_get_drvdata(pdev);
...@@ -200,7 +200,7 @@ static struct platform_driver mxs_sgtl5000_audio_driver = { ...@@ -200,7 +200,7 @@ static struct platform_driver mxs_sgtl5000_audio_driver = {
.of_match_table = mxs_sgtl5000_dt_ids, .of_match_table = mxs_sgtl5000_dt_ids,
}, },
.probe = mxs_sgtl5000_probe, .probe = mxs_sgtl5000_probe,
.remove = __devexit_p(mxs_sgtl5000_remove), .remove = mxs_sgtl5000_remove,
}; };
module_platform_driver(mxs_sgtl5000_audio_driver); module_platform_driver(mxs_sgtl5000_audio_driver);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment