Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 961b2f3f authored by David Dai's avatar David Dai Committed by Gerrit - the friendly Code Review server
Browse files

clk: qcom: Change the init for sdxpoorwills clock drivers to subsys



The current init level of core for the clock drivers makes the
drivers probe slower since the mailbox and regulator drivers
that the clock drivers are dependent on have an arch init level.
The clock driver probe gets deferred as a result and is scheduled
to much later. Change the initcall level for the clock drivers to
subsys instead to make the probes happen sooner.

Change-Id: I3d05aea9dad17c4c7860192cde1b48535f44604b
Signed-off-by: default avatarDavid Dai <daidavid1@codeaurora.org>
parent d91ef6f6
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1903,7 +1903,7 @@ static int __init gcc_sdxpoorwills_init(void)
{
	return platform_driver_register(&gcc_sdxpoorwills_driver);
}
core_initcall(gcc_sdxpoorwills_init);
subsys_initcall(gcc_sdxpoorwills_init);

static void __exit gcc_sdxpoorwills_exit(void)
{