diff options
author | Axel Lin <axel.lin@gmail.com> | 2011-11-25 23:01:10 -0500 |
---|---|---|
committer | Anton Vorontsov <cbouatmailru@gmail.com> | 2012-01-04 00:12:07 -0500 |
commit | 300bac7fb85a20b2704dc3645419057992f78565 (patch) | |
tree | d0c3e327967552ab9ba68866b6c77a951446a7cd /drivers/power/max8998_charger.c | |
parent | 251f39fe42dae863bd24e30864e6b66076ba076d (diff) |
power_supply: Convert drivers/power/* to use module_platform_driver()
This patch converts the drivers in drivers/power/* to use the
module_platform_driver() macro which makes the code smaller and a bit
simpler.
Cc: Mike Rapoport <mike@compulab.co.il>
Cc: Lars-Peter Clausen <lars@metafoo.de>
Cc: Nithish Mahalingam <nithish.mahalingam@intel.com>
Cc: MyungJoo Ham <myungjoo.ham@samsung.com>
Cc: Haojian Zhuang <haojian.zhuang@marvell.com>
Cc: Balaji Rao <balajirrao@openmoko.org>
Cc: Mark Brown <broonie@opensource.wolfsonmicro.com>
Signed-off-by: Axel Lin <axel.lin@gmail.com>
Acked-by: Clifton Barnes <cabarnes@indesign-llc.com>
Signed-off-by: Anton Vorontsov <cbouatmailru@gmail.com>
Diffstat (limited to 'drivers/power/max8998_charger.c')
-rw-r--r-- | drivers/power/max8998_charger.c | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/drivers/power/max8998_charger.c b/drivers/power/max8998_charger.c index 0737302af1d2..9b3f2bf56e70 100644 --- a/drivers/power/max8998_charger.c +++ b/drivers/power/max8998_charger.c | |||
@@ -204,17 +204,7 @@ static struct platform_driver max8998_battery_driver = { | |||
204 | .id_table = max8998_battery_id, | 204 | .id_table = max8998_battery_id, |
205 | }; | 205 | }; |
206 | 206 | ||
207 | static int __init max8998_battery_init(void) | 207 | module_platform_driver(max8998_battery_driver); |
208 | { | ||
209 | return platform_driver_register(&max8998_battery_driver); | ||
210 | } | ||
211 | module_init(max8998_battery_init); | ||
212 | |||
213 | static void __exit max8998_battery_cleanup(void) | ||
214 | { | ||
215 | platform_driver_unregister(&max8998_battery_driver); | ||
216 | } | ||
217 | module_exit(max8998_battery_cleanup); | ||
218 | 208 | ||
219 | MODULE_DESCRIPTION("MAXIM 8998 battery control driver"); | 209 | MODULE_DESCRIPTION("MAXIM 8998 battery control driver"); |
220 | MODULE_AUTHOR("MyungJoo Ham <myungjoo.ham@samsung.com>"); | 210 | MODULE_AUTHOR("MyungJoo Ham <myungjoo.ham@samsung.com>"); |