Skip to content

Commit 9d85fb7

Browse files
Konrad Dybcioandersson
authored andcommitted
rpmsg: qcom_smd: Promote to arch_initcall
qcom_smd's only child, smd-rpm uses arch_initcall and both have to be up before almost anything else to ensure the MSM SoCs will work fine and nothing will have to resort to probe defering, as this is the main pillar of all things DVFS on these machines. Promote it to arch_initcall to avoid such issues. Signed-off-by: Konrad Dybcio <konrad.dybcio@somainline.org> Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org> Link: https://lore.kernel.org/r/20211230023253.1123142-1-konrad.dybcio@somainline.org
1 parent 26291c5 commit 9d85fb7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

drivers/rpmsg/qcom_smd.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1605,7 +1605,7 @@ static int __init qcom_smd_init(void)
16051605
{
16061606
return platform_driver_register(&qcom_smd_driver);
16071607
}
1608-
subsys_initcall(qcom_smd_init);
1608+
arch_initcall(qcom_smd_init);
16091609

16101610
static void __exit qcom_smd_exit(void)
16111611
{

0 commit comments

Comments
 (0)