diff options
author | Axel Lin <axel.lin@gmail.com> | 2012-01-21 01:42:54 -0500 |
---|---|---|
committer | Anton Vorontsov <anton.vorontsov@linaro.org> | 2012-03-26 12:41:22 -0400 |
commit | 5ff92e7ab3591299089cfba440acb4d2ba8ab92f (patch) | |
tree | 342c94c993ef2ea65b8d0c2599f1306e2d1a23e3 /drivers/power/z2_battery.c | |
parent | e2c5f7db789a5be8ba131e9fe3e87b66bc606e3b (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/z2_battery.c')
-rw-r--r-- | drivers/power/z2_battery.c | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/drivers/power/z2_battery.c b/drivers/power/z2_battery.c index 636ebb2a0e80..8c9a607ea77a 100644 --- a/drivers/power/z2_battery.c +++ b/drivers/power/z2_battery.c | |||
@@ -316,19 +316,7 @@ static struct i2c_driver z2_batt_driver = { | |||
316 | .remove = __devexit_p(z2_batt_remove), | 316 | .remove = __devexit_p(z2_batt_remove), |
317 | .id_table = z2_batt_id, | 317 | .id_table = z2_batt_id, |
318 | }; | 318 | }; |
319 | 319 | module_i2c_driver(z2_batt_driver); | |
320 | static int __init z2_batt_init(void) | ||
321 | { | ||
322 | return i2c_add_driver(&z2_batt_driver); | ||
323 | } | ||
324 | |||
325 | static void __exit z2_batt_exit(void) | ||
326 | { | ||
327 | i2c_del_driver(&z2_batt_driver); | ||
328 | } | ||
329 | |||
330 | module_init(z2_batt_init); | ||
331 | module_exit(z2_batt_exit); | ||
332 | 320 | ||
333 | MODULE_LICENSE("GPL"); | 321 | MODULE_LICENSE("GPL"); |
334 | MODULE_AUTHOR("Peter Edwards <sweetlilmre@gmail.com>"); | 322 | MODULE_AUTHOR("Peter Edwards <sweetlilmre@gmail.com>"); |