summaryrefslogtreecommitdiff
path: root/drivers/remoteproc
diff options
context:
space:
mode:
authorOhad Ben-Cohen <ohad@wizery.com>2011-12-13 14:41:47 +0200
committerOhad Ben-Cohen <ohad@wizery.com>2012-02-08 22:54:30 +0200
commit63d667bf53c444082b053d95ddc4d54f3dbe8f52 (patch)
tree61a0f4ca05b35e3298a7c3ddcdade9e84aa93a00 /drivers/remoteproc
parent2fd51811b8b87408fd680b442364e3474a1a0f21 (diff)
remoteproc/omap: utilize module_platform_driver
Ditch some boilerplate code by employing the module_platform_driver helper. Signed-off-by: Ohad Ben-Cohen <ohad@wizery.com>
Diffstat (limited to 'drivers/remoteproc')
-rw-r--r--drivers/remoteproc/omap_remoteproc.c13
1 files changed, 1 insertions, 12 deletions
diff --git a/drivers/remoteproc/omap_remoteproc.c b/drivers/remoteproc/omap_remoteproc.c
index b49ecbb91ef..aa3ce52dc65 100644
--- a/drivers/remoteproc/omap_remoteproc.c
+++ b/drivers/remoteproc/omap_remoteproc.c
@@ -232,18 +232,7 @@ static struct platform_driver omap_rproc_driver = {
},
};
-/* most of the below will go when module_platform_driver is merged */
-static int __init omap_rproc_init(void)
-{
- return platform_driver_register(&omap_rproc_driver);
-}
-module_init(omap_rproc_init);
-
-static void __exit omap_rproc_exit(void)
-{
- platform_driver_unregister(&omap_rproc_driver);
-}
-module_exit(omap_rproc_exit);
+module_platform_driver(omap_rproc_driver);
MODULE_LICENSE("GPL v2");
MODULE_DESCRIPTION("OMAP Remote Processor control driver");