lkml.org 
[lkml]   [2011]   [Nov]   [28]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
Subject[PATCH] drm/exynos: convert drivers/gpu/drm/exynos/* to use module_platform_driver()
From
Date
This patch converts the drivers in drivers/gpu/drm/exynos/* to use the
module_platform_driver() macro which makes the code smaller and a bit
simpler.

Cc: Inki Dae <inki.dae@samsung.com>
Cc: Joonyoung Shim <jy0922.shim@samsung.com>
Cc: Seung-Woo Kim <sw0312.kim@samsung.com>
Signed-off-by: Axel Lin <axel.lin@gmail.com>
---
drivers/gpu/drm/exynos/exynos_drm_drv.c | 17 +----------------
drivers/gpu/drm/exynos/exynos_drm_fimd.c | 13 +------------
2 files changed, 2 insertions(+), 28 deletions(-)

diff --git a/drivers/gpu/drm/exynos/exynos_drm_drv.c b/drivers/gpu/drm/exynos/exynos_drm_drv.c
index 83810cb..812ad95 100644
--- a/drivers/gpu/drm/exynos/exynos_drm_drv.c
+++ b/drivers/gpu/drm/exynos/exynos_drm_drv.c
@@ -220,22 +220,7 @@ static struct platform_driver exynos_drm_platform_driver = {
},
};

-static int __init exynos_drm_init(void)
-{
- DRM_DEBUG_DRIVER("%s\n", __FILE__);
-
- return platform_driver_register(&exynos_drm_platform_driver);
-}
-
-static void __exit exynos_drm_exit(void)
-{
- DRM_DEBUG_DRIVER("%s\n", __FILE__);
-
- platform_driver_unregister(&exynos_drm_platform_driver);
-}
-
-module_init(exynos_drm_init);
-module_exit(exynos_drm_exit);
+module_platform_driver(exynos_drm_platform_driver);

MODULE_AUTHOR("Inki Dae <inki.dae@samsung.com>");
MODULE_AUTHOR("Joonyoung Shim <jy0922.shim@samsung.com>");
diff --git a/drivers/gpu/drm/exynos/exynos_drm_fimd.c b/drivers/gpu/drm/exynos/exynos_drm_fimd.c
index 4659c88..0d6e955 100644
--- a/drivers/gpu/drm/exynos/exynos_drm_fimd.c
+++ b/drivers/gpu/drm/exynos/exynos_drm_fimd.c
@@ -792,18 +792,7 @@ static struct platform_driver fimd_driver = {
},
};

-static int __init fimd_init(void)
-{
- return platform_driver_register(&fimd_driver);
-}
-
-static void __exit fimd_exit(void)
-{
- platform_driver_unregister(&fimd_driver);
-}
-
-module_init(fimd_init);
-module_exit(fimd_exit);
+module_platform_driver(fimd_driver);

MODULE_AUTHOR("Joonyoung Shim <jy0922.shim@samsung.com>");
MODULE_AUTHOR("Inki Dae <inki.dae@samsung.com>");
--
1.7.5.4




\
 
 \ /
  Last update: 2011-11-28 07:25    [W:0.023 / U:0.676 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site