diff options
author | Wei Yongjun <yongjun_wei@trendmicro.com.cn> | 2012-10-08 08:39:52 -0400 |
---|---|---|
committer | Scott Wood <scottwood@freescale.com> | 2013-06-25 17:34:11 -0400 |
commit | 98c7355fb373d7c29e5c45d0a423810ad2476b34 (patch) | |
tree | 0b35601f2218e762394f522969b79ceb06d636c9 /arch/powerpc | |
parent | 8c43d2b0ca10cea9eb62d8996fb93f330be88ada (diff) |
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')
-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 = { | |||
231 | .id_table = mcu_ids, | 231 | .id_table = mcu_ids, |
232 | }; | 232 | }; |
233 | 233 | ||
234 | static int __init mcu_init(void) | 234 | module_i2c_driver(mcu_driver); |
235 | { | ||
236 | return i2c_add_driver(&mcu_driver); | ||
237 | } | ||
238 | module_init(mcu_init); | ||
239 | |||
240 | static void __exit mcu_exit(void) | ||
241 | { | ||
242 | i2c_del_driver(&mcu_driver); | ||
243 | } | ||
244 | module_exit(mcu_exit); | ||
245 | 235 | ||
246 | MODULE_DESCRIPTION("Power Management and GPIO expander driver for " | 236 | MODULE_DESCRIPTION("Power Management and GPIO expander driver for " |
247 | "MPC8349E-mITX-compatible MCU"); | 237 | "MPC8349E-mITX-compatible MCU"); |