summaryrefslogtreecommitdiffstats
path: root/drivers/video/hecubafb.c
diff options
context:
space:
mode:
authorHanjun Guo2013-09-29 07:32:01 +0200
committerTomi Valkeinen2013-09-30 09:51:08 +0200
commit86bf043897a61bc62a5b1f8fee9fc7681f330f90 (patch)
tree06c99a778cda8bd3c264b9eafcba12e4f7923bb3 /drivers/video/hecubafb.c
parentOMAPDSS: HDMI: OMAP4: Complete dumping of core registers (diff)
downloadkernel-qcow2-linux-86bf043897a61bc62a5b1f8fee9fc7681f330f90.tar.gz
kernel-qcow2-linux-86bf043897a61bc62a5b1f8fee9fc7681f330f90.tar.xz
kernel-qcow2-linux-86bf043897a61bc62a5b1f8fee9fc7681f330f90.zip
Video / hecubafb: Use module_platform_driver() to simplify code
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>
Diffstat (limited to 'drivers/video/hecubafb.c')
-rw-r--r--drivers/video/hecubafb.c14
1 files changed, 1 insertions, 13 deletions
diff --git a/drivers/video/hecubafb.c b/drivers/video/hecubafb.c
index 59d23181fdb0..702b599dc3d6 100644
--- a/drivers/video/hecubafb.c
+++ b/drivers/video/hecubafb.c
@@ -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");