aboutsummaryrefslogtreecommitdiffstats
path: root/sound/soc/cirrus/ep93xx-pcm.c
diff options
context:
space:
mode:
Diffstat (limited to 'sound/soc/cirrus/ep93xx-pcm.c')
-rw-r--r--sound/soc/cirrus/ep93xx-pcm.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sound/soc/cirrus/ep93xx-pcm.c b/sound/soc/cirrus/ep93xx-pcm.c
index 665d9c94cc17..72eb7a49e16a 100644
--- a/sound/soc/cirrus/ep93xx-pcm.c
+++ b/sound/soc/cirrus/ep93xx-pcm.c
@@ -213,12 +213,12 @@ static struct snd_soc_platform_driver ep93xx_soc_platform = {
213 .pcm_free = &ep93xx_pcm_free_dma_buffers, 213 .pcm_free = &ep93xx_pcm_free_dma_buffers,
214}; 214};
215 215
216static int __devinit ep93xx_soc_platform_probe(struct platform_device *pdev) 216static int ep93xx_soc_platform_probe(struct platform_device *pdev)
217{ 217{
218 return snd_soc_register_platform(&pdev->dev, &ep93xx_soc_platform); 218 return snd_soc_register_platform(&pdev->dev, &ep93xx_soc_platform);
219} 219}
220 220
221static int __devexit ep93xx_soc_platform_remove(struct platform_device *pdev) 221static int ep93xx_soc_platform_remove(struct platform_device *pdev)
222{ 222{
223 snd_soc_unregister_platform(&pdev->dev); 223 snd_soc_unregister_platform(&pdev->dev);
224 return 0; 224 return 0;
@@ -231,7 +231,7 @@ static struct platform_driver ep93xx_pcm_driver = {
231 }, 231 },
232 232
233 .probe = ep93xx_soc_platform_probe, 233 .probe = ep93xx_soc_platform_probe,
234 .remove = __devexit_p(ep93xx_soc_platform_remove), 234 .remove = ep93xx_soc_platform_remove,
235}; 235};
236 236
237module_platform_driver(ep93xx_pcm_driver); 237module_platform_driver(ep93xx_pcm_driver);