public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drm/exynos: convert drivers/gpu/drm/exynos/* to use module_platform_driver()
@ 2011-11-28  6:21 Axel Lin
  0 siblings, 0 replies; only message in thread
From: Axel Lin @ 2011-11-28  6:21 UTC (permalink / raw)
  To: linux-kernel
  Cc: Inki Dae, Joonyoung Shim, Seung-Woo Kim, Inki Dae, David Airlie,
	dri-devel

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




^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2011-11-28  6:21 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-11-28  6:21 [PATCH] drm/exynos: convert drivers/gpu/drm/exynos/* to use module_platform_driver() Axel Lin

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox