Skip to content

Commit

Permalink
mfd: early init for MFD running regulators
Browse files Browse the repository at this point in the history
For MFDs running regulator cores, we really want them to be brought up early
during boot.

Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
Acked-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Acked-by: Mike Rapoport <mike@compulab.co.il>
  • Loading branch information
Samuel Ortiz authored and Samuel Ortiz committed Jun 17, 2009
1 parent 4d3792e commit 2021de8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion drivers/mfd/da903x.c
Original file line number Diff line number Diff line change
Expand Up @@ -561,7 +561,7 @@ static int __init da903x_init(void)
{
return i2c_add_driver(&da903x_driver);
}
module_init(da903x_init);
subsys_initcall(da903x_init);

static void __exit da903x_exit(void)
{
Expand Down
2 changes: 1 addition & 1 deletion drivers/mfd/pcf50633-core.c
Original file line number Diff line number Diff line change
Expand Up @@ -705,5 +705,5 @@ MODULE_DESCRIPTION("I2C chip driver for NXP PCF50633 PMU");
MODULE_AUTHOR("Harald Welte <laforge@openmoko.org>");
MODULE_LICENSE("GPL");

module_init(pcf50633_init);
subsys_initcall(pcf50633_init);
module_exit(pcf50633_exit);
2 changes: 1 addition & 1 deletion drivers/mfd/wm8400-core.c
Original file line number Diff line number Diff line change
Expand Up @@ -460,7 +460,7 @@ static int __init wm8400_module_init(void)

return ret;
}
module_init(wm8400_module_init);
subsys_initcall(wm8400_module_init);

static void __exit wm8400_module_exit(void)
{
Expand Down

0 comments on commit 2021de8

Please sign in to comment.