aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/video/omap/lcd_h4.c
diff options
context:
space:
mode:
authorPeter Huewe <peterhuewe@gmx.de>2009-07-03 08:39:40 -0400
committerJiri Kosina <jkosina@suse.cz>2009-09-21 09:14:54 -0400
commit3f6db50f1ebc4fa797445dd89af7211cafc52a92 (patch)
tree8b91826651b202b20b33e1f4aba702deaeaa3533 /drivers/video/omap/lcd_h4.c
parent411c94038594b2a3fd123d09bdec3fe2500e383d (diff)
trivial: media/omap: adding __init/__exit macros to lcd_drivers
Trivial patch which adds the __init and __exit macros to the module_init / module_exit functions to several files in drivers/video/omap/ Signed-off-by: Peter Huewe <peterhuewe@gmx.de> Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'drivers/video/omap/lcd_h4.c')
-rw-r--r--drivers/video/omap/lcd_h4.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/video/omap/lcd_h4.c b/drivers/video/omap/lcd_h4.c
index 6ff56430341b..0c398bda7601 100644
--- a/drivers/video/omap/lcd_h4.c
+++ b/drivers/video/omap/lcd_h4.c
@@ -102,12 +102,12 @@ static struct platform_driver h4_panel_driver = {
102 }, 102 },
103}; 103};
104 104
105static int h4_panel_drv_init(void) 105static int __init h4_panel_drv_init(void)
106{ 106{
107 return platform_driver_register(&h4_panel_driver); 107 return platform_driver_register(&h4_panel_driver);
108} 108}
109 109
110static void h4_panel_drv_cleanup(void) 110static void __exit h4_panel_drv_cleanup(void)
111{ 111{
112 platform_driver_unregister(&h4_panel_driver); 112 platform_driver_unregister(&h4_panel_driver);
113} 113}