|
@@ -352,7 +352,7 @@ static struct snd_soc_dai_driver ep93xx_ac97_dai = {
|
|
|
.ops = &ep93xx_ac97_dai_ops,
|
|
|
};
|
|
|
|
|
|
-static int __devinit ep93xx_ac97_probe(struct platform_device *pdev)
|
|
|
+static int ep93xx_ac97_probe(struct platform_device *pdev)
|
|
|
{
|
|
|
struct ep93xx_ac97_info *info;
|
|
|
struct resource *res;
|
|
@@ -402,7 +402,7 @@ fail:
|
|
|
return ret;
|
|
|
}
|
|
|
|
|
|
-static int __devexit ep93xx_ac97_remove(struct platform_device *pdev)
|
|
|
+static int ep93xx_ac97_remove(struct platform_device *pdev)
|
|
|
{
|
|
|
struct ep93xx_ac97_info *info = platform_get_drvdata(pdev);
|
|
|
|
|
@@ -420,7 +420,7 @@ static int __devexit ep93xx_ac97_remove(struct platform_device *pdev)
|
|
|
|
|
|
static struct platform_driver ep93xx_ac97_driver = {
|
|
|
.probe = ep93xx_ac97_probe,
|
|
|
- .remove = __devexit_p(ep93xx_ac97_remove),
|
|
|
+ .remove = ep93xx_ac97_remove,
|
|
|
.driver = {
|
|
|
.name = "ep93xx-ac97",
|
|
|
.owner = THIS_MODULE,
|