Commit b89ea90d402c13c8dd4d5dfc8d4a0b6efc5492df

Authored by Peter Huewe
Committed by Jiri Kosina
1 parent 06fe9fb418

add __init/__exit macros to omap video drivers

Trivial patch which adds the __init/__exit macros to the module_init/
module_exit functions of the following drivers in media/omap:
drivers/video/omap/lcd_ams_delta.c
drivers/video/omap/lcd_mipid.c

Signed-off-by: Peter Huewe <peterhuewe@gmx.de>
Acked-by: Imre Deak <imre.deak@nokia.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>

Showing 2 changed files with 4 additions and 4 deletions Side-by-side Diff

drivers/video/omap/lcd_ams_delta.c
... ... @@ -123,12 +123,12 @@
123 123 },
124 124 };
125 125  
126   -static int ams_delta_panel_drv_init(void)
  126 +static int __init ams_delta_panel_drv_init(void)
127 127 {
128 128 return platform_driver_register(&ams_delta_panel_driver);
129 129 }
130 130  
131   -static void ams_delta_panel_drv_cleanup(void)
  131 +static void __exit ams_delta_panel_drv_cleanup(void)
132 132 {
133 133 platform_driver_unregister(&ams_delta_panel_driver);
134 134 }
drivers/video/omap/lcd_mipid.c
... ... @@ -607,7 +607,7 @@
607 607 .remove = __devexit_p(mipid_spi_remove),
608 608 };
609 609  
610   -static int mipid_drv_init(void)
  610 +static int __init mipid_drv_init(void)
611 611 {
612 612 spi_register_driver(&mipid_spi_driver);
613 613  
... ... @@ -615,7 +615,7 @@
615 615 }
616 616 module_init(mipid_drv_init);
617 617  
618   -static void mipid_drv_cleanup(void)
  618 +static void __exit mipid_drv_cleanup(void)
619 619 {
620 620 spi_unregister_driver(&mipid_spi_driver);
621 621 }