diff options
author | Ohad Ben-Cohen <ohad@wizery.com> | 2011-12-13 14:41:47 +0200 |
---|---|---|
committer | Ohad Ben-Cohen <ohad@wizery.com> | 2012-02-08 22:54:30 +0200 |
commit | 63d667bf53c444082b053d95ddc4d54f3dbe8f52 (patch) | |
tree | 61a0f4ca05b35e3298a7c3ddcdade9e84aa93a00 /drivers/remoteproc | |
parent | 2fd51811b8b87408fd680b442364e3474a1a0f21 (diff) | |
download | linux-3.10-63d667bf53c444082b053d95ddc4d54f3dbe8f52.tar.gz linux-3.10-63d667bf53c444082b053d95ddc4d54f3dbe8f52.tar.bz2 linux-3.10-63d667bf53c444082b053d95ddc4d54f3dbe8f52.zip |
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.c | 13 |
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"); |