Skip to content

Commit

Permalink
ASoC: Samsung: remove __dev* attributes
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Bill Pemberton authored and Mark Brown committed Dec 9, 2012
1 parent d7f1be8 commit fdca21a
Show file tree
Hide file tree
Showing 19 changed files with 55 additions and 56 deletions.
6 changes: 3 additions & 3 deletions sound/soc/samsung/ac97.c
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,7 @@ static struct snd_soc_dai_driver s3c_ac97_dai[] = {
},
};

static __devinit int s3c_ac97_probe(struct platform_device *pdev)
static int s3c_ac97_probe(struct platform_device *pdev)
{
struct resource *mem_res, *dmatx_res, *dmarx_res, *dmamic_res, *irq_res;
struct s3c_audio_pdata *ac97_pdata;
Expand Down Expand Up @@ -485,7 +485,7 @@ static __devinit int s3c_ac97_probe(struct platform_device *pdev)
return ret;
}

static __devexit int s3c_ac97_remove(struct platform_device *pdev)
static int s3c_ac97_remove(struct platform_device *pdev)
{
struct resource *mem_res, *irq_res;

Expand All @@ -510,7 +510,7 @@ static __devexit int s3c_ac97_remove(struct platform_device *pdev)

static struct platform_driver s3c_ac97_driver = {
.probe = s3c_ac97_probe,
.remove = __devexit_p(s3c_ac97_remove),
.remove = s3c_ac97_remove,
.driver = {
.name = "samsung-ac97",
.owner = THIS_MODULE,
Expand Down
6 changes: 3 additions & 3 deletions sound/soc/samsung/bells.c
Original file line number Diff line number Diff line change
Expand Up @@ -412,7 +412,7 @@ static struct snd_soc_card bells_cards[] = {
};


static __devinit int bells_probe(struct platform_device *pdev)
static int bells_probe(struct platform_device *pdev)
{
int ret;

Expand All @@ -429,7 +429,7 @@ static __devinit int bells_probe(struct platform_device *pdev)
return 0;
}

static int __devexit bells_remove(struct platform_device *pdev)
static int bells_remove(struct platform_device *pdev)
{
snd_soc_unregister_card(&bells_cards[pdev->id]);

Expand All @@ -443,7 +443,7 @@ static struct platform_driver bells_driver = {
.pm = &snd_soc_pm_ops,
},
.probe = bells_probe,
.remove = __devexit_p(bells_remove),
.remove = bells_remove,
};

module_platform_driver(bells_driver);
Expand Down
4 changes: 2 additions & 2 deletions sound/soc/samsung/dma.c
Original file line number Diff line number Diff line change
Expand Up @@ -432,13 +432,13 @@ static struct snd_soc_platform_driver samsung_asoc_platform = {
.pcm_free = dma_free_dma_buffers,
};

int __devinit asoc_dma_platform_register(struct device *dev)
int asoc_dma_platform_register(struct device *dev)
{
return snd_soc_register_platform(dev, &samsung_asoc_platform);
}
EXPORT_SYMBOL_GPL(asoc_dma_platform_register);

void __devexit asoc_dma_platform_unregister(struct device *dev)
void asoc_dma_platform_unregister(struct device *dev)
{
snd_soc_unregister_platform(dev);
}
Expand Down
9 changes: 4 additions & 5 deletions sound/soc/samsung/i2s.c
Original file line number Diff line number Diff line change
Expand Up @@ -952,8 +952,7 @@ static const struct snd_soc_dai_ops samsung_i2s_dai_ops = {
SNDRV_PCM_FMTBIT_S16_LE | \
SNDRV_PCM_FMTBIT_S24_LE)

static __devinit
struct i2s_dai *i2s_alloc_dai(struct platform_device *pdev, bool sec)
static struct i2s_dai *i2s_alloc_dai(struct platform_device *pdev, bool sec)
{
struct i2s_dai *i2s;

Expand Down Expand Up @@ -994,7 +993,7 @@ struct i2s_dai *i2s_alloc_dai(struct platform_device *pdev, bool sec)
return i2s;
}

static __devinit int samsung_i2s_probe(struct platform_device *pdev)
static int samsung_i2s_probe(struct platform_device *pdev)
{
u32 dma_pl_chan, dma_cp_chan, dma_pl_sec_chan;
struct i2s_dai *pri_dai, *sec_dai = NULL;
Expand Down Expand Up @@ -1117,7 +1116,7 @@ static __devinit int samsung_i2s_probe(struct platform_device *pdev)
return ret;
}

static __devexit int samsung_i2s_remove(struct platform_device *pdev)
static int samsung_i2s_remove(struct platform_device *pdev)
{
struct i2s_dai *i2s, *other;
struct resource *res;
Expand Down Expand Up @@ -1146,7 +1145,7 @@ static __devexit int samsung_i2s_remove(struct platform_device *pdev)

static struct platform_driver samsung_i2s_driver = {
.probe = samsung_i2s_probe,
.remove = __devexit_p(samsung_i2s_remove),
.remove = samsung_i2s_remove,
.driver = {
.name = "samsung-i2s",
.owner = THIS_MODULE,
Expand Down
6 changes: 3 additions & 3 deletions sound/soc/samsung/idma.c
Original file line number Diff line number Diff line change
Expand Up @@ -416,12 +416,12 @@ static struct snd_soc_platform_driver asoc_idma_platform = {
.pcm_free = idma_free,
};

static int __devinit asoc_idma_platform_probe(struct platform_device *pdev)
static int asoc_idma_platform_probe(struct platform_device *pdev)
{
return snd_soc_register_platform(&pdev->dev, &asoc_idma_platform);
}

static int __devexit asoc_idma_platform_remove(struct platform_device *pdev)
static int asoc_idma_platform_remove(struct platform_device *pdev)
{
snd_soc_unregister_platform(&pdev->dev);
return 0;
Expand All @@ -434,7 +434,7 @@ static struct platform_driver asoc_idma_driver = {
},

.probe = asoc_idma_platform_probe,
.remove = __devexit_p(asoc_idma_platform_remove),
.remove = asoc_idma_platform_remove,
};

module_platform_driver(asoc_idma_driver);
Expand Down
6 changes: 3 additions & 3 deletions sound/soc/samsung/littlemill.c
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ static struct snd_soc_card littlemill = {
.late_probe = littlemill_late_probe,
};

static __devinit int littlemill_probe(struct platform_device *pdev)
static int littlemill_probe(struct platform_device *pdev)
{
struct snd_soc_card *card = &littlemill;
int ret;
Expand All @@ -314,7 +314,7 @@ static __devinit int littlemill_probe(struct platform_device *pdev)
return 0;
}

static int __devexit littlemill_remove(struct platform_device *pdev)
static int littlemill_remove(struct platform_device *pdev)
{
struct snd_soc_card *card = platform_get_drvdata(pdev);

Expand All @@ -330,7 +330,7 @@ static struct platform_driver littlemill_driver = {
.pm = &snd_soc_pm_ops,
},
.probe = littlemill_probe,
.remove = __devexit_p(littlemill_remove),
.remove = littlemill_remove,
};

module_platform_driver(littlemill_driver);
Expand Down
6 changes: 3 additions & 3 deletions sound/soc/samsung/lowland.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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);

Expand All @@ -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);
Expand Down
6 changes: 3 additions & 3 deletions sound/soc/samsung/pcm.c
Original file line number Diff line number Diff line change
Expand Up @@ -490,7 +490,7 @@ static struct snd_soc_dai_driver s3c_pcm_dai[] = {
},
};

static __devinit int s3c_pcm_dev_probe(struct platform_device *pdev)
static int s3c_pcm_dev_probe(struct platform_device *pdev)
{
struct s3c_pcm_info *pcm;
struct resource *mem_res, *dmatx_res, *dmarx_res;
Expand Down Expand Up @@ -613,7 +613,7 @@ static __devinit int s3c_pcm_dev_probe(struct platform_device *pdev)
return ret;
}

static __devexit int s3c_pcm_dev_remove(struct platform_device *pdev)
static int s3c_pcm_dev_remove(struct platform_device *pdev)
{
struct s3c_pcm_info *pcm = &s3c_pcm[pdev->id];
struct resource *mem_res;
Expand All @@ -638,7 +638,7 @@ static __devexit int s3c_pcm_dev_remove(struct platform_device *pdev)

static struct platform_driver s3c_pcm_driver = {
.probe = s3c_pcm_dev_probe,
.remove = __devexit_p(s3c_pcm_dev_remove),
.remove = s3c_pcm_dev_remove,
.driver = {
.name = "samsung-pcm",
.owner = THIS_MODULE,
Expand Down
6 changes: 3 additions & 3 deletions sound/soc/samsung/s3c2412-i2s.c
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ static struct snd_soc_dai_driver s3c2412_i2s_dai = {
.ops = &s3c2412_i2s_dai_ops,
};

static __devinit int s3c2412_iis_dev_probe(struct platform_device *pdev)
static int s3c2412_iis_dev_probe(struct platform_device *pdev)
{
int ret = 0;

Expand All @@ -182,7 +182,7 @@ static __devinit int s3c2412_iis_dev_probe(struct platform_device *pdev)
return ret;
}

static __devexit int s3c2412_iis_dev_remove(struct platform_device *pdev)
static int s3c2412_iis_dev_remove(struct platform_device *pdev)
{
asoc_dma_platform_unregister(&pdev->dev);
snd_soc_unregister_dai(&pdev->dev);
Expand All @@ -191,7 +191,7 @@ static __devexit int s3c2412_iis_dev_remove(struct platform_device *pdev)

static struct platform_driver s3c2412_iis_driver = {
.probe = s3c2412_iis_dev_probe,
.remove = __devexit_p(s3c2412_iis_dev_remove),
.remove = s3c2412_iis_dev_remove,
.driver = {
.name = "s3c2412-iis",
.owner = THIS_MODULE,
Expand Down
6 changes: 3 additions & 3 deletions sound/soc/samsung/s3c24xx-i2s.c
Original file line number Diff line number Diff line change
Expand Up @@ -465,7 +465,7 @@ static struct snd_soc_dai_driver s3c24xx_i2s_dai = {
.ops = &s3c24xx_i2s_dai_ops,
};

static __devinit int s3c24xx_iis_dev_probe(struct platform_device *pdev)
static int s3c24xx_iis_dev_probe(struct platform_device *pdev)
{
int ret = 0;

Expand All @@ -487,7 +487,7 @@ static __devinit int s3c24xx_iis_dev_probe(struct platform_device *pdev)
return ret;
}

static __devexit int s3c24xx_iis_dev_remove(struct platform_device *pdev)
static int s3c24xx_iis_dev_remove(struct platform_device *pdev)
{
asoc_dma_platform_unregister(&pdev->dev);
snd_soc_unregister_dai(&pdev->dev);
Expand All @@ -496,7 +496,7 @@ static __devexit int s3c24xx_iis_dev_remove(struct platform_device *pdev)

static struct platform_driver s3c24xx_iis_driver = {
.probe = s3c24xx_iis_dev_probe,
.remove = __devexit_p(s3c24xx_iis_dev_remove),
.remove = s3c24xx_iis_dev_remove,
.driver = {
.name = "s3c24xx-iis",
.owner = THIS_MODULE,
Expand Down
6 changes: 3 additions & 3 deletions sound/soc/samsung/s3c24xx_simtec.c
Original file line number Diff line number Diff line change
Expand Up @@ -313,8 +313,8 @@ const struct dev_pm_ops simtec_audio_pmops = {
EXPORT_SYMBOL_GPL(simtec_audio_pmops);
#endif

int __devinit simtec_audio_core_probe(struct platform_device *pdev,
struct snd_soc_card *card)
int simtec_audio_core_probe(struct platform_device *pdev,
struct snd_soc_card *card)
{
struct platform_device *snd_dev;
int ret;
Expand Down Expand Up @@ -371,7 +371,7 @@ int __devinit simtec_audio_core_probe(struct platform_device *pdev,
}
EXPORT_SYMBOL_GPL(simtec_audio_core_probe);

int __devexit simtec_audio_remove(struct platform_device *pdev)
int simtec_audio_remove(struct platform_device *pdev)
{
struct platform_device *snd_dev = platform_get_drvdata(pdev);

Expand Down
4 changes: 2 additions & 2 deletions sound/soc/samsung/s3c24xx_simtec_hermes.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand All @@ -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);
Expand Down
4 changes: 2 additions & 2 deletions sound/soc/samsung/s3c24xx_simtec_tlv320aic23.c
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ static struct snd_soc_card snd_soc_machine_simtec_aic23 = {
.num_dapm_routes = ARRAY_SIZE(base_map),
};

static int __devinit simtec_audio_tlv320aic23_probe(struct platform_device *pd)
static int simtec_audio_tlv320aic23_probe(struct platform_device *pd)
{
return simtec_audio_core_probe(pd, &snd_soc_machine_simtec_aic23);
}
Expand All @@ -100,7 +100,7 @@ static struct platform_driver simtec_audio_tlv320aic23_driver = {
.pm = simtec_audio_pm,
},
.probe = simtec_audio_tlv320aic23_probe,
.remove = __devexit_p(simtec_audio_remove),
.remove = simtec_audio_remove,
};

module_platform_driver(simtec_audio_tlv320aic23_driver);
Expand Down
6 changes: 3 additions & 3 deletions sound/soc/samsung/smdk_wm8580pcm.c
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ static struct snd_soc_card smdk_pcm = {
* is absent (or not connected), so we connect EXT_VOICE_CLK(OSC4),
* 2.0484Mhz, directly with MCLK both Codec and SoC.
*/
static int __devinit snd_smdk_probe(struct platform_device *pdev)
static int snd_smdk_probe(struct platform_device *pdev)
{
int ret = 0;

Expand All @@ -173,7 +173,7 @@ static int __devinit snd_smdk_probe(struct platform_device *pdev)
return 0;
}

static int __devexit snd_smdk_remove(struct platform_device *pdev)
static int snd_smdk_remove(struct platform_device *pdev)
{
snd_soc_unregister_card(&smdk_pcm);
platform_set_drvdata(pdev, NULL);
Expand All @@ -186,7 +186,7 @@ static struct platform_driver snd_smdk_driver = {
.name = "samsung-smdk-pcm",
},
.probe = snd_smdk_probe,
.remove = __devexit_p(snd_smdk_remove),
.remove = snd_smdk_remove,
};

module_platform_driver(snd_smdk_driver);
Expand Down
6 changes: 3 additions & 3 deletions sound/soc/samsung/smdk_wm8994.c
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ static struct snd_soc_card smdk = {
};


static int __devinit smdk_audio_probe(struct platform_device *pdev)
static int smdk_audio_probe(struct platform_device *pdev)
{
int ret;
struct snd_soc_card *card = &smdk;
Expand All @@ -164,7 +164,7 @@ static int __devinit smdk_audio_probe(struct platform_device *pdev)
return ret;
}

static int __devexit smdk_audio_remove(struct platform_device *pdev)
static int smdk_audio_remove(struct platform_device *pdev)
{
struct snd_soc_card *card = platform_get_drvdata(pdev);

Expand All @@ -179,7 +179,7 @@ static struct platform_driver smdk_audio_driver = {
.owner = THIS_MODULE,
},
.probe = smdk_audio_probe,
.remove = __devexit_p(smdk_audio_remove),
.remove = smdk_audio_remove,
};

module_platform_driver(smdk_audio_driver);
Expand Down
Loading

0 comments on commit fdca21a

Please sign in to comment.