From patchwork Sat Oct 13 19:03:05 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [1/9] powerpc: 83xx: use module_i2c_driver macro From: Devendra Naga X-Patchwork-Id: 191331 Message-Id: <1350154986-1478-1-git-send-email-devendra.aaru@gmail.com> To: Kumar Gala , Benjamin Herrenschmidt , Paul Mackerras , linuxppc-dev@lists.ozlabs.org Cc: Devendra Naga Date: Sat, 13 Oct 2012 15:03:05 -0400 replace the module init and exit calls containing the i2c_add_driver and i2c_del_driver with the module_i2c_driver macro as it does the same things as the code that is removed Signed-off-by: Devendra Naga --- Not compile tested, because i dont have a ppc cross toolchain arch/powerpc/platforms/83xx/mcu_mpc8349emitx.c | 13 +------------ 1 files changed, 1 insertions(+), 12 deletions(-) diff --git a/arch/powerpc/platforms/83xx/mcu_mpc8349emitx.c b/arch/powerpc/platforms/83xx/mcu_mpc8349emitx.c index ef6537b..d27477b 100644 --- a/arch/powerpc/platforms/83xx/mcu_mpc8349emitx.c +++ b/arch/powerpc/platforms/83xx/mcu_mpc8349emitx.c @@ -232,18 +232,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"); MODULE_AUTHOR("Anton Vorontsov ");