aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/power/max17040_battery.c
diff options
context:
space:
mode:
authorAxel Lin <axel.lin@gmail.com>2012-01-21 01:42:54 -0500
committerAnton Vorontsov <anton.vorontsov@linaro.org>2012-03-26 12:41:22 -0400
commit5ff92e7ab3591299089cfba440acb4d2ba8ab92f (patch)
tree342c94c993ef2ea65b8d0c2599f1306e2d1a23e3 /drivers/power/max17040_battery.c
parente2c5f7db789a5be8ba131e9fe3e87b66bc606e3b (diff)
power_supply: Convert i2c drivers to module_i2c_driver
Factor out some boilerplate code for i2c driver registration into module_i2c_driver. Signed-off-by: Axel Lin <axel.lin@gmail.com> Cc: Woogyom Kim <milo.kim@ti.com> Cc: Daniel Jeong <daniel.jeong@ti.com> Cc: Minkyu Kang <mk7.kang@samsung.com> Cc: Peter Edwards <sweetlilmre@gmail.com> Acked-by: Milo(Woogyom) Kim <milo.kim@ti.com> Acked-by: Rhyland Klein <rklein@nvidia.com> Acked-by: Ryan Mallon <rmallon@gmail.com> Signed-off-by: Anton Vorontsov <anton.vorontsov@linaro.org>
Diffstat (limited to 'drivers/power/max17040_battery.c')
-rw-r--r--drivers/power/max17040_battery.c13
1 files changed, 1 insertions, 12 deletions
diff --git a/drivers/power/max17040_battery.c b/drivers/power/max17040_battery.c
index 2f2f9a6f54fa..c284143cfcd7 100644
--- a/drivers/power/max17040_battery.c
+++ b/drivers/power/max17040_battery.c
@@ -290,18 +290,7 @@ static struct i2c_driver max17040_i2c_driver = {
290 .resume = max17040_resume, 290 .resume = max17040_resume,
291 .id_table = max17040_id, 291 .id_table = max17040_id,
292}; 292};
293 293module_i2c_driver(max17040_i2c_driver);
294static int __init max17040_init(void)
295{
296 return i2c_add_driver(&max17040_i2c_driver);
297}
298module_init(max17040_init);
299
300static void __exit max17040_exit(void)
301{
302 i2c_del_driver(&max17040_i2c_driver);
303}
304module_exit(max17040_exit);
305 294
306MODULE_AUTHOR("Minkyu Kang <mk7.kang@samsung.com>"); 295MODULE_AUTHOR("Minkyu Kang <mk7.kang@samsung.com>");
307MODULE_DESCRIPTION("MAX17040 Fuel Gauge"); 296MODULE_DESCRIPTION("MAX17040 Fuel Gauge");