Commit 02e2a4b3 authored by Maulik Shah's avatar Maulik Shah Committed by Ulf Hansson

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: default avatarMaulik Shah <quic_mkshah@quicinc.com>
Link: https://lore.kernel.org/r/20240217-init_level-v1-2-bde9e11f8317@quicinc.comSigned-off-by: default avatarUlf Hansson <ulf.hansson@linaro.org>
parent d72d7d6c
...@@ -201,4 +201,4 @@ static int __init psci_idle_init_domains(void) ...@@ -201,4 +201,4 @@ static int __init psci_idle_init_domains(void)
{ {
return platform_driver_register(&psci_cpuidle_domain_driver); return platform_driver_register(&psci_cpuidle_domain_driver);
} }
subsys_initcall(psci_idle_init_domains); core_initcall(psci_idle_init_domains);
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment