diff options
author | Peter Huewe <peterhuewe@gmx.de> | 2009-07-03 16:39:40 +0400 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2009-09-21 17:14:54 +0400 |
commit | 3f6db50f1ebc4fa797445dd89af7211cafc52a92 (patch) | |
tree | 8b91826651b202b20b33e1f4aba702deaeaa3533 /drivers/video/omap/lcd_palmte.c | |
parent | 411c94038594b2a3fd123d09bdec3fe2500e383d (diff) | |
download | linux-3f6db50f1ebc4fa797445dd89af7211cafc52a92.tar.xz |
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_palmte.c')
-rw-r--r-- | drivers/video/omap/lcd_palmte.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/video/omap/lcd_palmte.c b/drivers/video/omap/lcd_palmte.c index 218317366e6e..4bf3c79f3cc7 100644 --- a/drivers/video/omap/lcd_palmte.c +++ b/drivers/video/omap/lcd_palmte.c @@ -108,12 +108,12 @@ struct platform_driver palmte_panel_driver = { }, }; -static int palmte_panel_drv_init(void) +static int __init palmte_panel_drv_init(void) { return platform_driver_register(&palmte_panel_driver); } -static void palmte_panel_drv_cleanup(void) +static void __exit palmte_panel_drv_cleanup(void) { platform_driver_unregister(&palmte_panel_driver); } |