|
@@ -314,7 +314,7 @@ static struct snd_soc_dai_driver nuc900_ac97_dai = {
|
|
|
.ops = &nuc900_ac97_dai_ops,
|
|
|
};
|
|
|
|
|
|
-static int __devinit nuc900_ac97_drvprobe(struct platform_device *pdev)
|
|
|
+static int nuc900_ac97_drvprobe(struct platform_device *pdev)
|
|
|
{
|
|
|
struct nuc900_audio *nuc900_audio;
|
|
|
int ret;
|
|
@@ -382,7 +382,7 @@ out0:
|
|
|
return ret;
|
|
|
}
|
|
|
|
|
|
-static int __devexit nuc900_ac97_drvremove(struct platform_device *pdev)
|
|
|
+static int nuc900_ac97_drvremove(struct platform_device *pdev)
|
|
|
{
|
|
|
snd_soc_unregister_dai(&pdev->dev);
|
|
|
|
|
@@ -403,7 +403,7 @@ static struct platform_driver nuc900_ac97_driver = {
|
|
|
.owner = THIS_MODULE,
|
|
|
},
|
|
|
.probe = nuc900_ac97_drvprobe,
|
|
|
- .remove = __devexit_p(nuc900_ac97_drvremove),
|
|
|
+ .remove = nuc900_ac97_drvremove,
|
|
|
};
|
|
|
|
|
|
module_platform_driver(nuc900_ac97_driver);
|