diff options
author | Wei Yongjun <yongjun_wei@trendmicro.com.cn> | 2012-10-08 16:39:52 +0400 |
---|---|---|
committer | Scott Wood <scottwood@freescale.com> | 2013-06-26 01:34:11 +0400 |
commit | 98c7355fb373d7c29e5c45d0a423810ad2476b34 (patch) | |
tree | 0b35601f2218e762394f522969b79ceb06d636c9 /arch/powerpc/platforms/83xx | |
parent | 8c43d2b0ca10cea9eb62d8996fb93f330be88ada (diff) | |
download | linux-98c7355fb373d7c29e5c45d0a423810ad2476b34.tar.xz |
powerpc/83xx: use module_i2c_driver to simplify the code
Use the module_i2c_driver() macro to make the code smaller
and a bit simpler.
dpatch engine is used to auto generate this patch.
(https://github.com/weiyj/dpatch)
Signed-off-by: Wei Yongjun <yongjun_wei@trendmicro.com.cn>
Signed-off-by: Scott Wood <scottwood@freescale.com>
Diffstat (limited to 'arch/powerpc/platforms/83xx')
-rw-r--r-- | arch/powerpc/platforms/83xx/mcu_mpc8349emitx.c | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/arch/powerpc/platforms/83xx/mcu_mpc8349emitx.c b/arch/powerpc/platforms/83xx/mcu_mpc8349emitx.c index 624cb51d19c9..7bc315822935 100644 --- a/arch/powerpc/platforms/83xx/mcu_mpc8349emitx.c +++ b/arch/powerpc/platforms/83xx/mcu_mpc8349emitx.c @@ -231,17 +231,7 @@ static struct i2c_driver mcu_driver = { .id_table = mcu_ids, }; -static int __init mcu_init(void) -{ - return i2c_add_driver(&mcu_driver); -} -module_init(mcu_init); - -static void __exit mcu_exit(void) -{ - i2c_del_driver(&mcu_driver); -} -module_exit(mcu_exit); +module_i2c_driver(mcu_driver); MODULE_DESCRIPTION("Power Management and GPIO expander driver for " "MPC8349E-mITX-compatible MCU"); |