aboutsummaryrefslogtreecommitdiffstats
path: root/sound/soc/pxa/e750_wm9705.c
diff options
context:
space:
mode:
Diffstat (limited to 'sound/soc/pxa/e750_wm9705.c')
-rw-r--r--sound/soc/pxa/e750_wm9705.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sound/soc/pxa/e750_wm9705.c b/sound/soc/pxa/e750_wm9705.c
index 47b89d71e287..f94d2ab51351 100644
--- a/sound/soc/pxa/e750_wm9705.c
+++ b/sound/soc/pxa/e750_wm9705.c
@@ -126,7 +126,7 @@ static struct gpio e750_audio_gpios[] = {
126 { GPIO_E750_SPK_AMP_OFF, GPIOF_OUT_INIT_HIGH, "Speaker amp" }, 126 { GPIO_E750_SPK_AMP_OFF, GPIOF_OUT_INIT_HIGH, "Speaker amp" },
127}; 127};
128 128
129static int __devinit e750_probe(struct platform_device *pdev) 129static int e750_probe(struct platform_device *pdev)
130{ 130{
131 struct snd_soc_card *card = &e750; 131 struct snd_soc_card *card = &e750;
132 int ret; 132 int ret;
@@ -147,7 +147,7 @@ static int __devinit e750_probe(struct platform_device *pdev)
147 return ret; 147 return ret;
148} 148}
149 149
150static int __devexit e750_remove(struct platform_device *pdev) 150static int e750_remove(struct platform_device *pdev)
151{ 151{
152 struct snd_soc_card *card = platform_get_drvdata(pdev); 152 struct snd_soc_card *card = platform_get_drvdata(pdev);
153 153
@@ -162,7 +162,7 @@ static struct platform_driver e750_driver = {
162 .owner = THIS_MODULE, 162 .owner = THIS_MODULE,
163 }, 163 },
164 .probe = e750_probe, 164 .probe = e750_probe,
165 .remove = __devexit_p(e750_remove), 165 .remove = e750_remove,
166}; 166};
167 167
168module_platform_driver(e750_driver); 168module_platform_driver(e750_driver);