aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/video/omap/lcd_inn1610.c
diff options
context:
space:
mode:
authorAxel Lin <axel.lin@gmail.com>2011-12-09 09:59:56 +0800
committerTomi Valkeinen <tomi.valkeinen@ti.com>2012-01-02 08:51:25 +0200
commitf806f9b6b8ec2c8b6a3297e684bcb80f54e3dc98 (patch)
treeab1e550e81bb006428d772656b9ef51d316ff8fb /drivers/video/omap/lcd_inn1610.c
parentvideo: omap: Staticise non-exported symbols (diff)
downloadlinux-dev-f806f9b6b8ec2c8b6a3297e684bcb80f54e3dc98.tar.xz
linux-dev-f806f9b6b8ec2c8b6a3297e684bcb80f54e3dc98.zip
video: omap: convert drivers/video/omap/* to use module_platform_driver()
This patch converts the drivers in drivers/video/omap/* to use the module_platform_driver() macro which makes the code smaller and a bit simpler. Cc: Jonathan McDowell <noodles@earth.li> Cc: Cory Maccarrone <darkstar6262@gmail.com> Cc: Laurent Gonzalez <palmte.linux@free.fr> Cc: Marek Vasut <marek.vasut@gmail.com> Signed-off-by: Axel Lin <axel.lin@gmail.com> Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Diffstat (limited to 'drivers/video/omap/lcd_inn1610.c')
-rw-r--r--drivers/video/omap/lcd_inn1610.c14
1 files changed, 1 insertions, 13 deletions
diff --git a/drivers/video/omap/lcd_inn1610.c b/drivers/video/omap/lcd_inn1610.c
index a95756bfda0e..7e8bd8e08a98 100644
--- a/drivers/video/omap/lcd_inn1610.c
+++ b/drivers/video/omap/lcd_inn1610.c
@@ -133,16 +133,4 @@ static struct platform_driver innovator1610_panel_driver = {
},
};
-static int __init innovator1610_panel_drv_init(void)
-{
- return platform_driver_register(&innovator1610_panel_driver);
-}
-
-static void __exit innovator1610_panel_drv_cleanup(void)
-{
- platform_driver_unregister(&innovator1610_panel_driver);
-}
-
-module_init(innovator1610_panel_drv_init);
-module_exit(innovator1610_panel_drv_cleanup);
-
+module_platform_driver(innovator1610_panel_driver);