|
@@ -529,7 +529,7 @@ static irqreturn_t bfin_bf54x_irq_error(int irq, void *dev_id)
|
|
return IRQ_HANDLED;
|
|
return IRQ_HANDLED;
|
|
}
|
|
}
|
|
|
|
|
|
-static int __init bfin_bf54x_probe(struct platform_device *pdev)
|
|
|
|
|
|
+static int __devinit bfin_bf54x_probe(struct platform_device *pdev)
|
|
{
|
|
{
|
|
struct bfin_bf54xfb_info *info;
|
|
struct bfin_bf54xfb_info *info;
|
|
struct fb_info *fbinfo;
|
|
struct fb_info *fbinfo;
|
|
@@ -709,7 +709,7 @@ out1:
|
|
return ret;
|
|
return ret;
|
|
}
|
|
}
|
|
|
|
|
|
-static int bfin_bf54x_remove(struct platform_device *pdev)
|
|
|
|
|
|
+static int __devexit bfin_bf54x_remove(struct platform_device *pdev)
|
|
{
|
|
{
|
|
|
|
|
|
struct fb_info *fbinfo = platform_get_drvdata(pdev);
|
|
struct fb_info *fbinfo = platform_get_drvdata(pdev);
|
|
@@ -778,7 +778,7 @@ static int bfin_bf54x_resume(struct platform_device *pdev)
|
|
|
|
|
|
static struct platform_driver bfin_bf54x_driver = {
|
|
static struct platform_driver bfin_bf54x_driver = {
|
|
.probe = bfin_bf54x_probe,
|
|
.probe = bfin_bf54x_probe,
|
|
- .remove = bfin_bf54x_remove,
|
|
|
|
|
|
+ .remove = __devexit_p(bfin_bf54x_remove),
|
|
.suspend = bfin_bf54x_suspend,
|
|
.suspend = bfin_bf54x_suspend,
|
|
.resume = bfin_bf54x_resume,
|
|
.resume = bfin_bf54x_resume,
|
|
.driver = {
|
|
.driver = {
|
|
@@ -787,7 +787,7 @@ static struct platform_driver bfin_bf54x_driver = {
|
|
},
|
|
},
|
|
};
|
|
};
|
|
|
|
|
|
-static int __devinit bfin_bf54x_driver_init(void)
|
|
|
|
|
|
+static int __init bfin_bf54x_driver_init(void)
|
|
{
|
|
{
|
|
return platform_driver_register(&bfin_bf54x_driver);
|
|
return platform_driver_register(&bfin_bf54x_driver);
|
|
}
|
|
}
|