diff options
Diffstat (limited to 'sound/soc/fsl/imx-pcm-fiq.c')
-rw-r--r-- | sound/soc/fsl/imx-pcm-fiq.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sound/soc/fsl/imx-pcm-fiq.c b/sound/soc/fsl/imx-pcm-fiq.c index 9ffc9e66308f..5ec362ae4d01 100644 --- a/sound/soc/fsl/imx-pcm-fiq.c +++ b/sound/soc/fsl/imx-pcm-fiq.c | |||
@@ -281,7 +281,7 @@ static struct snd_soc_platform_driver imx_soc_platform_fiq = { | |||
281 | .pcm_free = imx_pcm_fiq_free, | 281 | .pcm_free = imx_pcm_fiq_free, |
282 | }; | 282 | }; |
283 | 283 | ||
284 | static int __devinit imx_soc_platform_probe(struct platform_device *pdev) | 284 | static int imx_soc_platform_probe(struct platform_device *pdev) |
285 | { | 285 | { |
286 | struct imx_ssi *ssi = platform_get_drvdata(pdev); | 286 | struct imx_ssi *ssi = platform_get_drvdata(pdev); |
287 | int ret; | 287 | int ret; |
@@ -315,7 +315,7 @@ failed_register: | |||
315 | return ret; | 315 | return ret; |
316 | } | 316 | } |
317 | 317 | ||
318 | static int __devexit imx_soc_platform_remove(struct platform_device *pdev) | 318 | static int imx_soc_platform_remove(struct platform_device *pdev) |
319 | { | 319 | { |
320 | snd_soc_unregister_platform(&pdev->dev); | 320 | snd_soc_unregister_platform(&pdev->dev); |
321 | return 0; | 321 | return 0; |
@@ -328,7 +328,7 @@ static struct platform_driver imx_pcm_driver = { | |||
328 | }, | 328 | }, |
329 | 329 | ||
330 | .probe = imx_soc_platform_probe, | 330 | .probe = imx_soc_platform_probe, |
331 | .remove = __devexit_p(imx_soc_platform_remove), | 331 | .remove = imx_soc_platform_remove, |
332 | }; | 332 | }; |
333 | 333 | ||
334 | module_platform_driver(imx_pcm_driver); | 334 | module_platform_driver(imx_pcm_driver); |