diff options
Diffstat (limited to 'sound/soc/cirrus/edb93xx.c')
-rw-r--r-- | sound/soc/cirrus/edb93xx.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sound/soc/cirrus/edb93xx.c b/sound/soc/cirrus/edb93xx.c index e01cb02abd3a..5db68cf7b281 100644 --- a/sound/soc/cirrus/edb93xx.c +++ b/sound/soc/cirrus/edb93xx.c | |||
@@ -80,7 +80,7 @@ static struct snd_soc_card snd_soc_edb93xx = { | |||
80 | .num_links = 1, | 80 | .num_links = 1, |
81 | }; | 81 | }; |
82 | 82 | ||
83 | static int __devinit edb93xx_probe(struct platform_device *pdev) | 83 | static int edb93xx_probe(struct platform_device *pdev) |
84 | { | 84 | { |
85 | struct snd_soc_card *card = &snd_soc_edb93xx; | 85 | struct snd_soc_card *card = &snd_soc_edb93xx; |
86 | int ret; | 86 | int ret; |
@@ -101,7 +101,7 @@ static int __devinit edb93xx_probe(struct platform_device *pdev) | |||
101 | return ret; | 101 | return ret; |
102 | } | 102 | } |
103 | 103 | ||
104 | static int __devexit edb93xx_remove(struct platform_device *pdev) | 104 | static int edb93xx_remove(struct platform_device *pdev) |
105 | { | 105 | { |
106 | struct snd_soc_card *card = platform_get_drvdata(pdev); | 106 | struct snd_soc_card *card = platform_get_drvdata(pdev); |
107 | 107 | ||
@@ -117,7 +117,7 @@ static struct platform_driver edb93xx_driver = { | |||
117 | .owner = THIS_MODULE, | 117 | .owner = THIS_MODULE, |
118 | }, | 118 | }, |
119 | .probe = edb93xx_probe, | 119 | .probe = edb93xx_probe, |
120 | .remove = __devexit_p(edb93xx_remove), | 120 | .remove = edb93xx_remove, |
121 | }; | 121 | }; |
122 | 122 | ||
123 | module_platform_driver(edb93xx_driver); | 123 | module_platform_driver(edb93xx_driver); |