mirror of
https://github.com/team-infusion-developers/android_kernel_samsung_msm8976.git
synced 2024-11-07 04:09:21 +00:00
ALSA: atmel: 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: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
parent
e21596bba1
commit
61dc674c3b
2 changed files with 9 additions and 9 deletions
|
@ -309,7 +309,7 @@ static struct snd_pcm_ops atmel_abdac_ops = {
|
|||
.pointer = atmel_abdac_pointer,
|
||||
};
|
||||
|
||||
static int __devinit atmel_abdac_pcm_new(struct atmel_abdac *dac)
|
||||
static int atmel_abdac_pcm_new(struct atmel_abdac *dac)
|
||||
{
|
||||
struct snd_pcm_hardware hw = atmel_abdac_hw;
|
||||
struct snd_pcm *pcm;
|
||||
|
@ -386,7 +386,7 @@ static int set_sample_rates(struct atmel_abdac *dac)
|
|||
return retval;
|
||||
}
|
||||
|
||||
static int __devinit atmel_abdac_probe(struct platform_device *pdev)
|
||||
static int atmel_abdac_probe(struct platform_device *pdev)
|
||||
{
|
||||
struct snd_card *card;
|
||||
struct atmel_abdac *dac;
|
||||
|
@ -567,7 +567,7 @@ static SIMPLE_DEV_PM_OPS(atmel_abdac_pm, atmel_abdac_suspend, atmel_abdac_resume
|
|||
#define ATMEL_ABDAC_PM_OPS NULL
|
||||
#endif
|
||||
|
||||
static int __devexit atmel_abdac_remove(struct platform_device *pdev)
|
||||
static int atmel_abdac_remove(struct platform_device *pdev)
|
||||
{
|
||||
struct snd_card *card = platform_get_drvdata(pdev);
|
||||
struct atmel_abdac *dac = get_dac(card);
|
||||
|
@ -589,7 +589,7 @@ static int __devexit atmel_abdac_remove(struct platform_device *pdev)
|
|||
}
|
||||
|
||||
static struct platform_driver atmel_abdac_driver = {
|
||||
.remove = __devexit_p(atmel_abdac_remove),
|
||||
.remove = atmel_abdac_remove,
|
||||
.driver = {
|
||||
.name = "atmel_abdac",
|
||||
.owner = THIS_MODULE,
|
||||
|
|
|
@ -728,7 +728,7 @@ static irqreturn_t atmel_ac97c_interrupt(int irq, void *dev)
|
|||
return retval;
|
||||
}
|
||||
|
||||
static struct ac97_pcm at91_ac97_pcm_defs[] __devinitdata = {
|
||||
static struct ac97_pcm at91_ac97_pcm_defs[] = {
|
||||
/* Playback */
|
||||
{
|
||||
.exclusive = 1,
|
||||
|
@ -756,7 +756,7 @@ static struct ac97_pcm at91_ac97_pcm_defs[] __devinitdata = {
|
|||
},
|
||||
};
|
||||
|
||||
static int __devinit atmel_ac97c_pcm_new(struct atmel_ac97c *chip)
|
||||
static int atmel_ac97c_pcm_new(struct atmel_ac97c *chip)
|
||||
{
|
||||
struct snd_pcm *pcm;
|
||||
struct snd_pcm_hardware hw = atmel_ac97c_hw;
|
||||
|
@ -902,7 +902,7 @@ static void atmel_ac97c_reset(struct atmel_ac97c *chip)
|
|||
}
|
||||
}
|
||||
|
||||
static int __devinit atmel_ac97c_probe(struct platform_device *pdev)
|
||||
static int atmel_ac97c_probe(struct platform_device *pdev)
|
||||
{
|
||||
struct snd_card *card;
|
||||
struct atmel_ac97c *chip;
|
||||
|
@ -1168,7 +1168,7 @@ static SIMPLE_DEV_PM_OPS(atmel_ac97c_pm, atmel_ac97c_suspend, atmel_ac97c_resume
|
|||
#define ATMEL_AC97C_PM_OPS NULL
|
||||
#endif
|
||||
|
||||
static int __devexit atmel_ac97c_remove(struct platform_device *pdev)
|
||||
static int atmel_ac97c_remove(struct platform_device *pdev)
|
||||
{
|
||||
struct snd_card *card = platform_get_drvdata(pdev);
|
||||
struct atmel_ac97c *chip = get_chip(card);
|
||||
|
@ -1205,7 +1205,7 @@ static int __devexit atmel_ac97c_remove(struct platform_device *pdev)
|
|||
}
|
||||
|
||||
static struct platform_driver atmel_ac97c_driver = {
|
||||
.remove = __devexit_p(atmel_ac97c_remove),
|
||||
.remove = atmel_ac97c_remove,
|
||||
.driver = {
|
||||
.name = "atmel_ac97c",
|
||||
.owner = THIS_MODULE,
|
||||
|
|
Loading…
Reference in a new issue