mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-13 23:34:05 +08:00
ASoC: s6000: 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>
This commit is contained in:
parent
7ff6000627
commit
9ac8a7122e
@ -436,7 +436,7 @@ static struct snd_soc_dai_driver s6000_i2s_dai = {
|
||||
.ops = &s6000_i2s_dai_ops,
|
||||
};
|
||||
|
||||
static int __devinit s6000_i2s_probe(struct platform_device *pdev)
|
||||
static int s6000_i2s_probe(struct platform_device *pdev)
|
||||
{
|
||||
struct s6000_i2s_dev *dev;
|
||||
struct resource *scbmem, *sifmem, *region, *dma1, *dma2;
|
||||
@ -566,7 +566,7 @@ err_release_none:
|
||||
return ret;
|
||||
}
|
||||
|
||||
static void __devexit s6000_i2s_remove(struct platform_device *pdev)
|
||||
static void s6000_i2s_remove(struct platform_device *pdev)
|
||||
{
|
||||
struct s6000_i2s_dev *dev = dev_get_drvdata(&pdev->dev);
|
||||
struct resource *region;
|
||||
@ -597,7 +597,7 @@ static void __devexit s6000_i2s_remove(struct platform_device *pdev)
|
||||
|
||||
static struct platform_driver s6000_i2s_driver = {
|
||||
.probe = s6000_i2s_probe,
|
||||
.remove = __devexit_p(s6000_i2s_remove),
|
||||
.remove = s6000_i2s_remove,
|
||||
.driver = {
|
||||
.name = "s6000-i2s",
|
||||
.owner = THIS_MODULE,
|
||||
|
@ -500,12 +500,12 @@ static struct snd_soc_platform_driver s6000_soc_platform = {
|
||||
.pcm_free = s6000_pcm_free,
|
||||
};
|
||||
|
||||
static int __devinit s6000_soc_platform_probe(struct platform_device *pdev)
|
||||
static int s6000_soc_platform_probe(struct platform_device *pdev)
|
||||
{
|
||||
return snd_soc_register_platform(&pdev->dev, &s6000_soc_platform);
|
||||
}
|
||||
|
||||
static int __devexit s6000_soc_platform_remove(struct platform_device *pdev)
|
||||
static int s6000_soc_platform_remove(struct platform_device *pdev)
|
||||
{
|
||||
snd_soc_unregister_platform(&pdev->dev);
|
||||
return 0;
|
||||
@ -518,7 +518,7 @@ static struct platform_driver s6000_pcm_driver = {
|
||||
},
|
||||
|
||||
.probe = s6000_soc_platform_probe,
|
||||
.remove = __devexit_p(s6000_soc_platform_remove),
|
||||
.remove = s6000_soc_platform_remove,
|
||||
};
|
||||
|
||||
module_platform_driver(s6000_pcm_driver);
|
||||
|
Loading…
Reference in New Issue
Block a user