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/pda_power.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/pda_power.c')
-rw-r--r-- | drivers/power/pda_power.c | 15 |
1 files changed, 2 insertions, 13 deletions
diff --git a/drivers/power/pda_power.c b/drivers/power/pda_power.c index 87be6795605a..fd49689738af 100644 --- a/drivers/power/pda_power.c +++ b/drivers/power/pda_power.c | |||
@@ -498,8 +498,6 @@ static int pda_power_resume(struct platform_device *pdev) | |||
498 | #define pda_power_resume NULL | 498 | #define pda_power_resume NULL |
499 | #endif /* CONFIG_PM */ | 499 | #endif /* CONFIG_PM */ |
500 | 500 | ||
501 | MODULE_ALIAS("platform:pda-power"); | ||
502 | |||
503 | static struct platform_driver pda_power_pdrv = { | 501 | static struct platform_driver pda_power_pdrv = { |
504 | .driver = { | 502 | .driver = { |
505 | .name = "pda-power", | 503 | .name = "pda-power", |
@@ -510,17 +508,8 @@ static struct platform_driver pda_power_pdrv = { | |||
510 | .resume = pda_power_resume, | 508 | .resume = pda_power_resume, |
511 | }; | 509 | }; |
512 | 510 | ||
513 | static int __init pda_power_init(void) | 511 | module_platform_driver(pda_power_pdrv); |
514 | { | ||
515 | return platform_driver_register(&pda_power_pdrv); | ||
516 | } | ||
517 | |||
518 | static void __exit pda_power_exit(void) | ||
519 | { | ||
520 | platform_driver_unregister(&pda_power_pdrv); | ||
521 | } | ||
522 | 512 | ||
523 | module_init(pda_power_init); | ||
524 | module_exit(pda_power_exit); | ||
525 | MODULE_LICENSE("GPL"); | 513 | MODULE_LICENSE("GPL"); |
526 | MODULE_AUTHOR("Anton Vorontsov <cbou@mail.ru>"); | 514 | MODULE_AUTHOR("Anton Vorontsov <cbou@mail.ru>"); |
515 | MODULE_ALIAS("platform:pda-power"); | ||