diff options
author | Srinivas Kandagatla <srinivas.kandagatla@st.com> | 2012-10-10 19:40:19 +0100 |
---|---|---|
committer | Bob Liu <lliubbo@gmail.com> | 2012-12-13 13:50:57 +0800 |
commit | 4452fec6af8d5ed1dc3ac37f31d7da1bd62733b8 (patch) | |
tree | b985253c32cca596683934c2ff5614d668653fd0 /arch | |
parent | 00e9584c765043d6f4385244f03eed0e7fe18287 (diff) | |
download | linux-3.10-4452fec6af8d5ed1dc3ac37f31d7da1bd62733b8.tar.gz linux-3.10-4452fec6af8d5ed1dc3ac37f31d7da1bd62733b8.tar.bz2 linux-3.10-4452fec6af8d5ed1dc3ac37f31d7da1bd62733b8.zip |
Blackfin: dpmc: use module_platform_driver macro
This patch removes some code duplication by using
module_platform_driver.
Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@st.com>
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Signed-off-by: Bob Liu <lliubbo@gmail.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/blackfin/mach-common/dpmc.c | 19 |
1 files changed, 1 insertions, 18 deletions
diff --git a/arch/blackfin/mach-common/dpmc.c b/arch/blackfin/mach-common/dpmc.c index f5685a496c5..978bb400be0 100644 --- a/arch/blackfin/mach-common/dpmc.c +++ b/arch/blackfin/mach-common/dpmc.c @@ -157,24 +157,7 @@ struct platform_driver bfin_dpmc_device_driver = { .name = DRIVER_NAME, } }; - -/** - * bfin_dpmc_init - Init driver - */ -static int __init bfin_dpmc_init(void) -{ - return platform_driver_register(&bfin_dpmc_device_driver); -} -module_init(bfin_dpmc_init); - -/** - * bfin_dpmc_exit - break down driver - */ -static void __exit bfin_dpmc_exit(void) -{ - platform_driver_unregister(&bfin_dpmc_device_driver); -} -module_exit(bfin_dpmc_exit); +module_platform_driver(bfin_dpmc_device_driver); MODULE_AUTHOR("Michael Hennerich <hennerich@blackfin.uclinux.org>"); MODULE_DESCRIPTION("cpu power management driver for Blackfin"); |