Commit d64f14e1 authored by Tomi Valkeinen's avatar Tomi Valkeinen

OMAPFB: add __init & __exit

Change omapfb to use platform_driver_probe and add __init & __exit.
Signed-off-by: default avatarTomi Valkeinen <tomi.valkeinen@ti.com>
parent 6e7e8f06
...@@ -2307,7 +2307,7 @@ static int omapfb_init_display(struct omapfb2_device *fbdev, ...@@ -2307,7 +2307,7 @@ static int omapfb_init_display(struct omapfb2_device *fbdev,
return 0; return 0;
} }
static int omapfb_probe(struct platform_device *pdev) static int __init omapfb_probe(struct platform_device *pdev)
{ {
struct omapfb2_device *fbdev = NULL; struct omapfb2_device *fbdev = NULL;
int r = 0; int r = 0;
...@@ -2448,7 +2448,7 @@ static int omapfb_probe(struct platform_device *pdev) ...@@ -2448,7 +2448,7 @@ static int omapfb_probe(struct platform_device *pdev)
return r; return r;
} }
static int omapfb_remove(struct platform_device *pdev) static int __exit omapfb_remove(struct platform_device *pdev)
{ {
struct omapfb2_device *fbdev = platform_get_drvdata(pdev); struct omapfb2_device *fbdev = platform_get_drvdata(pdev);
...@@ -2462,8 +2462,7 @@ static int omapfb_remove(struct platform_device *pdev) ...@@ -2462,8 +2462,7 @@ static int omapfb_remove(struct platform_device *pdev)
} }
static struct platform_driver omapfb_driver = { static struct platform_driver omapfb_driver = {
.probe = omapfb_probe, .remove = __exit_p(omapfb_remove),
.remove = omapfb_remove,
.driver = { .driver = {
.name = "omapfb", .name = "omapfb",
.owner = THIS_MODULE, .owner = THIS_MODULE,
...@@ -2474,7 +2473,7 @@ static int __init omapfb_init(void) ...@@ -2474,7 +2473,7 @@ static int __init omapfb_init(void)
{ {
DBG("omapfb_init\n"); DBG("omapfb_init\n");
if (platform_driver_register(&omapfb_driver)) { if (platform_driver_probe(&omapfb_driver, omapfb_probe)) {
printk(KERN_ERR "failed to register omapfb driver\n"); printk(KERN_ERR "failed to register omapfb driver\n");
return -ENODEV; return -ENODEV;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment