aboutsummaryrefslogtreecommitdiffstats
path: root/sound/soc/au1x/i2sc.c
diff options
context:
space:
mode:
Diffstat (limited to 'sound/soc/au1x/i2sc.c')
-rw-r--r--sound/soc/au1x/i2sc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sound/soc/au1x/i2sc.c b/sound/soc/au1x/i2sc.c
index d4b9e364a47a..072448afc219 100644
--- a/sound/soc/au1x/i2sc.c
+++ b/sound/soc/au1x/i2sc.c
@@ -225,7 +225,7 @@ static struct snd_soc_dai_driver au1xi2s_dai_driver = {
225 .ops = &au1xi2s_dai_ops, 225 .ops = &au1xi2s_dai_ops,
226}; 226};
227 227
228static int __devinit au1xi2s_drvprobe(struct platform_device *pdev) 228static int au1xi2s_drvprobe(struct platform_device *pdev)
229{ 229{
230 struct resource *iores, *dmares; 230 struct resource *iores, *dmares;
231 struct au1xpsc_audio_data *ctx; 231 struct au1xpsc_audio_data *ctx;
@@ -263,7 +263,7 @@ static int __devinit au1xi2s_drvprobe(struct platform_device *pdev)
263 return snd_soc_register_dai(&pdev->dev, &au1xi2s_dai_driver); 263 return snd_soc_register_dai(&pdev->dev, &au1xi2s_dai_driver);
264} 264}
265 265
266static int __devexit au1xi2s_drvremove(struct platform_device *pdev) 266static int au1xi2s_drvremove(struct platform_device *pdev)
267{ 267{
268 struct au1xpsc_audio_data *ctx = platform_get_drvdata(pdev); 268 struct au1xpsc_audio_data *ctx = platform_get_drvdata(pdev);
269 269
@@ -309,7 +309,7 @@ static struct platform_driver au1xi2s_driver = {
309 .pm = AU1XI2SC_PMOPS, 309 .pm = AU1XI2SC_PMOPS,
310 }, 310 },
311 .probe = au1xi2s_drvprobe, 311 .probe = au1xi2s_drvprobe,
312 .remove = __devexit_p(au1xi2s_drvremove), 312 .remove = au1xi2s_drvremove,
313}; 313};
314 314
315module_platform_driver(au1xi2s_driver); 315module_platform_driver(au1xi2s_driver);