regulator: Move regulator drivers to subsys_initcall()
Regulators need to be available early in init in order to allow them to be available for consumers when requested. This is generally done by registering them at subsys_initcall() time but not all regulator drivers have done that. Convert these drivers to do so in order to mimimise future support. Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com> Acked-by: Mike Rapoport <mike@compulab.co.il> Signed-off-by: Liam Girdwood <lrg@slimlogic.co.uk>
This commit is contained in:
committed by
Liam Girdwood
parent
7c314991d7
commit
5a1b22beef
@@ -117,7 +117,7 @@ static int __init regulator_fixed_voltage_init(void)
|
||||
{
|
||||
return platform_driver_register(®ulator_fixed_voltage_driver);
|
||||
}
|
||||
module_init(regulator_fixed_voltage_init);
|
||||
subsys_initcall(regulator_fixed_voltage_init);
|
||||
|
||||
static void __exit regulator_fixed_voltage_exit(void)
|
||||
{
|
||||
|
Reference in New Issue
Block a user