aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/video/da8xx-fb.c
diff options
context:
space:
mode:
authorHanjun Guo <hanjun.guo@linaro.org>2013-09-29 13:32:05 +0800
committerTomi Valkeinen <tomi.valkeinen@ti.com>2013-09-30 10:51:09 +0300
commit44f544f752eb90781ef74010c2566c0dde2914ad (patch)
treede465e4780bf897a36feb03424c7fce43e54ffb9 /drivers/video/da8xx-fb.c
parentVideo / jz4740_fb: Use module_platform_driver() to simplify code (diff)
downloadlinux-dev-44f544f752eb90781ef74010c2566c0dde2914ad.tar.xz
linux-dev-44f544f752eb90781ef74010c2566c0dde2914ad.zip
Video / da8xx-fb: 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/da8xx-fb.c')
-rw-r--r--drivers/video/da8xx-fb.c14
1 files changed, 1 insertions, 13 deletions
diff --git a/drivers/video/da8xx-fb.c b/drivers/video/da8xx-fb.c
index 0670c85bef44..90f8a2f04d7a 100644
--- a/drivers/video/da8xx-fb.c
+++ b/drivers/video/da8xx-fb.c
@@ -1663,19 +1663,7 @@ static struct platform_driver da8xx_fb_driver = {
.owner = THIS_MODULE,
},
};
-
-static int __init da8xx_fb_init(void)
-{
- return platform_driver_register(&da8xx_fb_driver);
-}
-
-static void __exit da8xx_fb_cleanup(void)
-{
- platform_driver_unregister(&da8xx_fb_driver);
-}
-
-module_init(da8xx_fb_init);
-module_exit(da8xx_fb_cleanup);
+module_platform_driver(da8xx_fb_driver);
MODULE_DESCRIPTION("Framebuffer driver for TI da8xx/omap-l1xx");
MODULE_AUTHOR("Texas Instruments");