aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMika Westerberg <[email protected]>2012-04-16 11:48:38 +0300
committerAnton Vorontsov <[email protected]>2012-05-05 05:34:56 -0700
commitb75ef1d807e20919a00bed16045537e76e0497a7 (patch)
tree0ac95add85c16c68605c570f34d1c4b0e724a00c
parente6fe3597fa17dcd7ee82a5198beadb19a457a478 (diff)
smb347-charger: Convert to use module_i2c_driver()
This reduces the amount of boilerplate code in the driver and makes it a bit simpler. Signed-off-by: Mika Westerberg <[email protected]> Signed-off-by: Anton Vorontsov <[email protected]>
-rw-r--r--drivers/power/smb347-charger.c12
1 files changed, 1 insertions, 11 deletions
diff --git a/drivers/power/smb347-charger.c b/drivers/power/smb347-charger.c
index 3e9df6ef8537..0dfe063f4178 100644
--- a/drivers/power/smb347-charger.c
+++ b/drivers/power/smb347-charger.c
@@ -1285,17 +1285,7 @@ static struct i2c_driver smb347_driver = {
.id_table = smb347_id,
};
-static int __init smb347_init(void)
-{
- return i2c_add_driver(&smb347_driver);
-}
-module_init(smb347_init);
-
-static void __exit smb347_exit(void)
-{
- i2c_del_driver(&smb347_driver);
-}
-module_exit(smb347_exit);
+module_i2c_driver(smb347_driver);
MODULE_AUTHOR("Bruce E. Robertson <[email protected]>");
MODULE_AUTHOR("Mika Westerberg <[email protected]>");