aboutsummaryrefslogtreecommitdiffstats
path: root/sound/soc/au1x/ac97c.c
diff options
context:
space:
mode:
Diffstat (limited to 'sound/soc/au1x/ac97c.c')
-rw-r--r--sound/soc/au1x/ac97c.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sound/soc/au1x/ac97c.c b/sound/soc/au1x/ac97c.c
index c5ac2449563a..ea7d9d157022 100644
--- a/sound/soc/au1x/ac97c.c
+++ b/sound/soc/au1x/ac97c.c
@@ -223,7 +223,7 @@ static struct snd_soc_dai_driver au1xac97c_dai_driver = {
223 .ops = &alchemy_ac97c_ops, 223 .ops = &alchemy_ac97c_ops,
224}; 224};
225 225
226static int __devinit au1xac97c_drvprobe(struct platform_device *pdev) 226static int au1xac97c_drvprobe(struct platform_device *pdev)
227{ 227{
228 int ret; 228 int ret;
229 struct resource *iores, *dmares; 229 struct resource *iores, *dmares;
@@ -276,7 +276,7 @@ static int __devinit au1xac97c_drvprobe(struct platform_device *pdev)
276 return 0; 276 return 0;
277} 277}
278 278
279static int __devexit au1xac97c_drvremove(struct platform_device *pdev) 279static int au1xac97c_drvremove(struct platform_device *pdev)
280{ 280{
281 struct au1xpsc_audio_data *ctx = platform_get_drvdata(pdev); 281 struct au1xpsc_audio_data *ctx = platform_get_drvdata(pdev);
282 282
@@ -330,7 +330,7 @@ static struct platform_driver au1xac97c_driver = {
330 .pm = AU1XPSCAC97_PMOPS, 330 .pm = AU1XPSCAC97_PMOPS,
331 }, 331 },
332 .probe = au1xac97c_drvprobe, 332 .probe = au1xac97c_drvprobe,
333 .remove = __devexit_p(au1xac97c_drvremove), 333 .remove = au1xac97c_drvremove,
334}; 334};
335 335
336static int __init au1xac97c_load(void) 336static int __init au1xac97c_load(void)