diff options
Diffstat (limited to 'sound/soc/cirrus/simone.c')
-rw-r--r-- | sound/soc/cirrus/simone.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sound/soc/cirrus/simone.c b/sound/soc/cirrus/simone.c index dd997094eb30..a397bb0d8179 100644 --- a/sound/soc/cirrus/simone.c +++ b/sound/soc/cirrus/simone.c | |||
@@ -41,7 +41,7 @@ static struct snd_soc_card snd_soc_simone = { | |||
41 | 41 | ||
42 | static struct platform_device *simone_snd_ac97_device; | 42 | static struct platform_device *simone_snd_ac97_device; |
43 | 43 | ||
44 | static int __devinit simone_probe(struct platform_device *pdev) | 44 | static int simone_probe(struct platform_device *pdev) |
45 | { | 45 | { |
46 | struct snd_soc_card *card = &snd_soc_simone; | 46 | struct snd_soc_card *card = &snd_soc_simone; |
47 | int ret; | 47 | int ret; |
@@ -63,7 +63,7 @@ static int __devinit simone_probe(struct platform_device *pdev) | |||
63 | return ret; | 63 | return ret; |
64 | } | 64 | } |
65 | 65 | ||
66 | static int __devexit simone_remove(struct platform_device *pdev) | 66 | static int simone_remove(struct platform_device *pdev) |
67 | { | 67 | { |
68 | struct snd_soc_card *card = platform_get_drvdata(pdev); | 68 | struct snd_soc_card *card = platform_get_drvdata(pdev); |
69 | 69 | ||
@@ -79,7 +79,7 @@ static struct platform_driver simone_driver = { | |||
79 | .owner = THIS_MODULE, | 79 | .owner = THIS_MODULE, |
80 | }, | 80 | }, |
81 | .probe = simone_probe, | 81 | .probe = simone_probe, |
82 | .remove = __devexit_p(simone_remove), | 82 | .remove = simone_remove, |
83 | }; | 83 | }; |
84 | 84 | ||
85 | module_platform_driver(simone_driver); | 85 | module_platform_driver(simone_driver); |