Skip to content

Commit 02e2a4b

Browse files
maulik-k-shahstorulf
authored andcommitted
cpuidle: psci: Update init level to core_initcall()
Clients like regulators, interconnects and clocks depend on rpmh-rsc to vote on resources and rpmh-rsc depends on psci power-domains to complete probe. All of them are in core_initcall(). Change psci domain init level to core_initcall() to avoid probe defer from all of the above. Signed-off-by: Maulik Shah <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Ulf Hansson <[email protected]>
1 parent d72d7d6 commit 02e2a4b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/cpuidle/cpuidle-psci-domain.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,4 +201,4 @@ static int __init psci_idle_init_domains(void)
201201
{
202202
return platform_driver_register(&psci_cpuidle_domain_driver);
203203
}
204-
subsys_initcall(psci_idle_init_domains);
204+
core_initcall(psci_idle_init_domains);

0 commit comments

Comments
 (0)