Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 283467
b: refs/heads/master
c: 300bac7
h: refs/heads/master
i:
  283465: 2a1151b
  283463: 19389a6
v: v3
  • Loading branch information
Axel Lin authored and Anton Vorontsov committed Jan 4, 2012
1 parent 4f40f71 commit 2ede0bc
Show file tree
Hide file tree
Showing 20 changed files with 22 additions and 220 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 251f39fe42dae863bd24e30864e6b66076ba076d
refs/heads/master: 300bac7fb85a20b2704dc3645419057992f78565
13 changes: 1 addition & 12 deletions trunk/drivers/power/da9030_battery.c
Original file line number Diff line number Diff line change
Expand Up @@ -588,18 +588,7 @@ static struct platform_driver da903x_battery_driver = {
.remove = da9030_battery_remove,
};

static int da903x_battery_init(void)
{
return platform_driver_register(&da903x_battery_driver);
}

static void da903x_battery_exit(void)
{
platform_driver_unregister(&da903x_battery_driver);
}

module_init(da903x_battery_init);
module_exit(da903x_battery_exit);
module_platform_driver(da903x_battery_driver);

MODULE_DESCRIPTION("DA9030 battery charger driver");
MODULE_AUTHOR("Mike Rapoport, CompuLab");
Expand Down
13 changes: 1 addition & 12 deletions trunk/drivers/power/ds2760_battery.c
Original file line number Diff line number Diff line change
Expand Up @@ -641,18 +641,7 @@ static struct platform_driver ds2760_battery_driver = {
.resume = ds2760_battery_resume,
};

static int __init ds2760_battery_init(void)
{
return platform_driver_register(&ds2760_battery_driver);
}

static void __exit ds2760_battery_exit(void)
{
platform_driver_unregister(&ds2760_battery_driver);
}

module_init(ds2760_battery_init);
module_exit(ds2760_battery_exit);
module_platform_driver(ds2760_battery_driver);

MODULE_LICENSE("GPL");
MODULE_AUTHOR("Szabolcs Gyurko <szabolcs.gyurko@tlt.hu>, "
Expand Down
16 changes: 2 additions & 14 deletions trunk/drivers/power/ds2780_battery.c
Original file line number Diff line number Diff line change
Expand Up @@ -841,8 +841,6 @@ static int __devexit ds2780_battery_remove(struct platform_device *pdev)
return 0;
}

MODULE_ALIAS("platform:ds2780-battery");

static struct platform_driver ds2780_battery_driver = {
.driver = {
.name = "ds2780-battery",
Expand All @@ -851,19 +849,9 @@ static struct platform_driver ds2780_battery_driver = {
.remove = __devexit_p(ds2780_battery_remove),
};

static int __init ds2780_battery_init(void)
{
return platform_driver_register(&ds2780_battery_driver);
}

static void __exit ds2780_battery_exit(void)
{
platform_driver_unregister(&ds2780_battery_driver);
}

module_init(ds2780_battery_init);
module_exit(ds2780_battery_exit);
module_platform_driver(ds2780_battery_driver);

MODULE_LICENSE("GPL");
MODULE_AUTHOR("Clifton Barnes <cabarnes@indesign-llc.com>");
MODULE_DESCRIPTION("Maxim/Dallas DS2780 Stand-Alone Fuel Gauage IC driver");
MODULE_ALIAS("platform:ds2780-battery");
12 changes: 1 addition & 11 deletions trunk/drivers/power/gpio-charger.c
Original file line number Diff line number Diff line change
Expand Up @@ -185,17 +185,7 @@ static struct platform_driver gpio_charger_driver = {
},
};

static int __init gpio_charger_init(void)
{
return platform_driver_register(&gpio_charger_driver);
}
module_init(gpio_charger_init);

static void __exit gpio_charger_exit(void)
{
platform_driver_unregister(&gpio_charger_driver);
}
module_exit(gpio_charger_exit);
module_platform_driver(gpio_charger_driver);

MODULE_AUTHOR("Lars-Peter Clausen <lars@metafoo.de>");
MODULE_DESCRIPTION("Driver for chargers which report their online status through a GPIO");
Expand Down
13 changes: 1 addition & 12 deletions trunk/drivers/power/intel_mid_battery.c
Original file line number Diff line number Diff line change
Expand Up @@ -779,18 +779,7 @@ static struct platform_driver platform_pmic_battery_driver = {
.remove = __devexit_p(platform_pmic_battery_remove),
};

static int __init platform_pmic_battery_module_init(void)
{
return platform_driver_register(&platform_pmic_battery_driver);
}

static void __exit platform_pmic_battery_module_exit(void)
{
platform_driver_unregister(&platform_pmic_battery_driver);
}

module_init(platform_pmic_battery_module_init);
module_exit(platform_pmic_battery_module_exit);
module_platform_driver(platform_pmic_battery_driver);

MODULE_AUTHOR("Nithish Mahalingam <nithish.mahalingam@intel.com>");
MODULE_DESCRIPTION("Intel Moorestown PMIC Battery Driver");
Expand Down
12 changes: 1 addition & 11 deletions trunk/drivers/power/isp1704_charger.c
Original file line number Diff line number Diff line change
Expand Up @@ -494,17 +494,7 @@ static struct platform_driver isp1704_charger_driver = {
.remove = __devexit_p(isp1704_charger_remove),
};

static int __init isp1704_charger_init(void)
{
return platform_driver_register(&isp1704_charger_driver);
}
module_init(isp1704_charger_init);

static void __exit isp1704_charger_exit(void)
{
platform_driver_unregister(&isp1704_charger_driver);
}
module_exit(isp1704_charger_exit);
module_platform_driver(isp1704_charger_driver);

MODULE_ALIAS("platform:isp1704_charger");
MODULE_AUTHOR("Nokia Corporation");
Expand Down
12 changes: 1 addition & 11 deletions trunk/drivers/power/jz4740-battery.c
Original file line number Diff line number Diff line change
Expand Up @@ -441,17 +441,7 @@ static struct platform_driver jz_battery_driver = {
},
};

static int __init jz_battery_init(void)
{
return platform_driver_register(&jz_battery_driver);
}
module_init(jz_battery_init);

static void __exit jz_battery_exit(void)
{
platform_driver_unregister(&jz_battery_driver);
}
module_exit(jz_battery_exit);
module_platform_driver(jz_battery_driver);

MODULE_ALIAS("platform:jz4740-battery");
MODULE_LICENSE("GPL");
Expand Down
12 changes: 1 addition & 11 deletions trunk/drivers/power/max8903_charger.c
Original file line number Diff line number Diff line change
Expand Up @@ -374,17 +374,7 @@ static struct platform_driver max8903_driver = {
},
};

static int __init max8903_init(void)
{
return platform_driver_register(&max8903_driver);
}
module_init(max8903_init);

static void __exit max8903_exit(void)
{
platform_driver_unregister(&max8903_driver);
}
module_exit(max8903_exit);
module_platform_driver(max8903_driver);

MODULE_LICENSE("GPL");
MODULE_DESCRIPTION("MAX8903 Charger Driver");
Expand Down
12 changes: 1 addition & 11 deletions trunk/drivers/power/max8925_power.c
Original file line number Diff line number Diff line change
Expand Up @@ -523,17 +523,7 @@ static struct platform_driver max8925_power_driver = {
},
};

static int __init max8925_power_init(void)
{
return platform_driver_register(&max8925_power_driver);
}
module_init(max8925_power_init);

static void __exit max8925_power_exit(void)
{
platform_driver_unregister(&max8925_power_driver);
}
module_exit(max8925_power_exit);
module_platform_driver(max8925_power_driver);

MODULE_LICENSE("GPL");
MODULE_DESCRIPTION("Power supply driver for MAX8925");
Expand Down
12 changes: 1 addition & 11 deletions trunk/drivers/power/max8998_charger.c
Original file line number Diff line number Diff line change
Expand Up @@ -204,17 +204,7 @@ static struct platform_driver max8998_battery_driver = {
.id_table = max8998_battery_id,
};

static int __init max8998_battery_init(void)
{
return platform_driver_register(&max8998_battery_driver);
}
module_init(max8998_battery_init);

static void __exit max8998_battery_cleanup(void)
{
platform_driver_unregister(&max8998_battery_driver);
}
module_exit(max8998_battery_cleanup);
module_platform_driver(max8998_battery_driver);

MODULE_DESCRIPTION("MAXIM 8998 battery control driver");
MODULE_AUTHOR("MyungJoo Ham <myungjoo.ham@samsung.com>");
Expand Down
12 changes: 1 addition & 11 deletions trunk/drivers/power/olpc_battery.c
Original file line number Diff line number Diff line change
Expand Up @@ -630,17 +630,7 @@ static struct platform_driver olpc_battery_driver = {
.suspend = olpc_battery_suspend,
};

static int __init olpc_bat_init(void)
{
return platform_driver_register(&olpc_battery_driver);
}
module_init(olpc_bat_init);

static void __exit olpc_bat_exit(void)
{
platform_driver_unregister(&olpc_battery_driver);
}
module_exit(olpc_bat_exit);
module_platform_driver(olpc_battery_driver);

MODULE_AUTHOR("David Woodhouse <dwmw2@infradead.org>");
MODULE_LICENSE("GPL");
Expand Down
12 changes: 1 addition & 11 deletions trunk/drivers/power/pcf50633-charger.c
Original file line number Diff line number Diff line change
Expand Up @@ -474,17 +474,7 @@ static struct platform_driver pcf50633_mbc_driver = {
.remove = __devexit_p(pcf50633_mbc_remove),
};

static int __init pcf50633_mbc_init(void)
{
return platform_driver_register(&pcf50633_mbc_driver);
}
module_init(pcf50633_mbc_init);

static void __exit pcf50633_mbc_exit(void)
{
platform_driver_unregister(&pcf50633_mbc_driver);
}
module_exit(pcf50633_mbc_exit);
module_platform_driver(pcf50633_mbc_driver);

MODULE_AUTHOR("Balaji Rao <balajirrao@openmoko.org>");
MODULE_DESCRIPTION("PCF50633 mbc driver");
Expand Down
15 changes: 2 additions & 13 deletions trunk/drivers/power/pda_power.c
Original file line number Diff line number Diff line change
Expand Up @@ -498,8 +498,6 @@ static int pda_power_resume(struct platform_device *pdev)
#define pda_power_resume NULL
#endif /* CONFIG_PM */

MODULE_ALIAS("platform:pda-power");

static struct platform_driver pda_power_pdrv = {
.driver = {
.name = "pda-power",
Expand All @@ -510,17 +508,8 @@ static struct platform_driver pda_power_pdrv = {
.resume = pda_power_resume,
};

static int __init pda_power_init(void)
{
return platform_driver_register(&pda_power_pdrv);
}

static void __exit pda_power_exit(void)
{
platform_driver_unregister(&pda_power_pdrv);
}
module_platform_driver(pda_power_pdrv);

module_init(pda_power_init);
module_exit(pda_power_exit);
MODULE_LICENSE("GPL");
MODULE_AUTHOR("Anton Vorontsov <cbou@mail.ru>");
MODULE_ALIAS("platform:pda-power");
12 changes: 1 addition & 11 deletions trunk/drivers/power/s3c_adc_battery.c
Original file line number Diff line number Diff line change
Expand Up @@ -421,17 +421,7 @@ static struct platform_driver s3c_adc_bat_driver = {
.resume = s3c_adc_bat_resume,
};

static int __init s3c_adc_bat_init(void)
{
return platform_driver_register(&s3c_adc_bat_driver);
}
module_init(s3c_adc_bat_init);

static void __exit s3c_adc_bat_exit(void)
{
platform_driver_unregister(&s3c_adc_bat_driver);
}
module_exit(s3c_adc_bat_exit);
module_platform_driver(s3c_adc_bat_driver);

MODULE_AUTHOR("Vasily Khoruzhick <anarsoul@gmail.com>");
MODULE_DESCRIPTION("iPAQ H1930/H1940/RX1950 battery controller driver");
Expand Down
13 changes: 1 addition & 12 deletions trunk/drivers/power/tosa_battery.c
Original file line number Diff line number Diff line change
Expand Up @@ -438,18 +438,7 @@ static struct platform_driver tosa_bat_driver = {
.resume = tosa_bat_resume,
};

static int __init tosa_bat_init(void)
{
return platform_driver_register(&tosa_bat_driver);
}

static void __exit tosa_bat_exit(void)
{
platform_driver_unregister(&tosa_bat_driver);
}

module_init(tosa_bat_init);
module_exit(tosa_bat_exit);
module_platform_driver(tosa_bat_driver);

MODULE_LICENSE("GPL");
MODULE_AUTHOR("Dmitry Baryshkov");
Expand Down
12 changes: 1 addition & 11 deletions trunk/drivers/power/wm831x_backup.c
Original file line number Diff line number Diff line change
Expand Up @@ -226,17 +226,7 @@ static struct platform_driver wm831x_backup_driver = {
},
};

static int __init wm831x_backup_init(void)
{
return platform_driver_register(&wm831x_backup_driver);
}
module_init(wm831x_backup_init);

static void __exit wm831x_backup_exit(void)
{
platform_driver_unregister(&wm831x_backup_driver);
}
module_exit(wm831x_backup_exit);
module_platform_driver(wm831x_backup_driver);

MODULE_DESCRIPTION("Backup battery charger driver for WM831x PMICs");
MODULE_AUTHOR("Mark Brown <broonie@opensource.wolfsonmicro.com>");
Expand Down
12 changes: 1 addition & 11 deletions trunk/drivers/power/wm831x_power.c
Original file line number Diff line number Diff line change
Expand Up @@ -655,17 +655,7 @@ static struct platform_driver wm831x_power_driver = {
},
};

static int __init wm831x_power_init(void)
{
return platform_driver_register(&wm831x_power_driver);
}
module_init(wm831x_power_init);

static void __exit wm831x_power_exit(void)
{
platform_driver_unregister(&wm831x_power_driver);
}
module_exit(wm831x_power_exit);
module_platform_driver(wm831x_power_driver);

MODULE_DESCRIPTION("Power supply driver for WM831x PMICs");
MODULE_AUTHOR("Mark Brown <broonie@opensource.wolfsonmicro.com>");
Expand Down
12 changes: 1 addition & 11 deletions trunk/drivers/power/wm8350_power.c
Original file line number Diff line number Diff line change
Expand Up @@ -522,17 +522,7 @@ static struct platform_driver wm8350_power_driver = {
},
};

static int __init wm8350_power_init(void)
{
return platform_driver_register(&wm8350_power_driver);
}
module_init(wm8350_power_init);

static void __exit wm8350_power_exit(void)
{
platform_driver_unregister(&wm8350_power_driver);
}
module_exit(wm8350_power_exit);
module_platform_driver(wm8350_power_driver);

MODULE_LICENSE("GPL");
MODULE_DESCRIPTION("Power supply driver for WM8350");
Expand Down
13 changes: 1 addition & 12 deletions trunk/drivers/power/wm97xx_battery.c
Original file line number Diff line number Diff line change
Expand Up @@ -291,18 +291,7 @@ static struct platform_driver wm97xx_bat_driver = {
.remove = __devexit_p(wm97xx_bat_remove),
};

static int __init wm97xx_bat_init(void)
{
return platform_driver_register(&wm97xx_bat_driver);
}

static void __exit wm97xx_bat_exit(void)
{
platform_driver_unregister(&wm97xx_bat_driver);
}

module_init(wm97xx_bat_init);
module_exit(wm97xx_bat_exit);
module_platform_driver(wm97xx_bat_driver);

MODULE_LICENSE("GPL");
MODULE_AUTHOR("Marek Vasut <marek.vasut@gmail.com>");
Expand Down

0 comments on commit 2ede0bc

Please sign in to comment.