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

Commit cbc6bdfd authored by Jeff Hugo's avatar Jeff Hugo
Browse files

soc: qcom: glink_smd_xprt: Move to arch_initcall()



The SMD Transitional Transport is used by the Glink framework to
communicate with the power management processor for cases like voting for
clocks and regulators.  Therefore, the SMD transport is critical to the
boot process and should init as early as possible to unblock boot.

Move SMD Transitional Transport from module_init() to arch_initcall() to
unblock boot.

Change-Id: Ie0542b3d5a9e369d1388cb15cbe0e4523101b9e4
Signed-off-by: default avatarJeffrey Hugo <jhugo@codeaurora.org>
parent 4c83deef
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1706,7 +1706,7 @@ static int __init glink_smd_xprt_init(void)

	return 0;
}
module_init(glink_smd_xprt_init);
arch_initcall(glink_smd_xprt_init);

MODULE_DESCRIPTION("MSM G-Link SMD Transport");
MODULE_LICENSE("GPL v2");