]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
Video / hecubafb: Use module_platform_driver() to simplify code
authorHanjun Guo <hanjun.guo@linaro.org>
Sun, 29 Sep 2013 05:32:01 +0000 (13:32 +0800)
committerTomi Valkeinen <tomi.valkeinen@ti.com>
Mon, 30 Sep 2013 07:51:08 +0000 (10:51 +0300)
Convert to module_platform_driver() to simplify code.

Signed-off-by: Hanjun Guo <hanjun.guo@linaro.org>
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
drivers/video/hecubafb.c

index 59d23181fdb0f768c927fb38d7a60a257471331e..702b599dc3d61e4ec4debfdcf22adbcd4484dd58 100644 (file)
@@ -305,19 +305,7 @@ static struct platform_driver hecubafb_driver = {
                .name   = "hecubafb",
        },
 };
-
-static int __init hecubafb_init(void)
-{
-       return platform_driver_register(&hecubafb_driver);
-}
-
-static void __exit hecubafb_exit(void)
-{
-       platform_driver_unregister(&hecubafb_driver);
-}
-
-module_init(hecubafb_init);
-module_exit(hecubafb_exit);
+module_platform_driver(hecubafb_driver);
 
 MODULE_DESCRIPTION("fbdev driver for Hecuba/Apollo controller");
 MODULE_AUTHOR("Jaya Kumar");