Skip to content

Commit ad44ac0

Browse files
diandersbroonie
authored andcommitted
regulator: qcom-rpmh: Revert "regulator: qcom-rpmh: Use PROBE_FORCE_SYNCHRONOUS"
This reverts commit 5897304 ("regulator: qcom-rpmh: Use PROBE_FORCE_SYNCHRONOUS"). Further digging into the problems that prompted the us to switch to synchronous probe showed that the root cause was a missing "rootwait" in the kernel command line arguments. Let's reinstate asynchronous probe. Fixes: 5897304 ("regulator: qcom-rpmh: Use PROBE_FORCE_SYNCHRONOUS") Cc: Marek Szyprowski <m.szyprowski@samsung.com> Signed-off-by: Douglas Anderson <dianders@chromium.org> Link: https://lore.kernel.org/r/20230324063357.1.Ifdf3625a3c5c9467bd87bfcdf726c884ad220a35@changeid Signed-off-by: Mark Brown <broonie@kernel.org>
1 parent 5897304 commit ad44ac0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

drivers/regulator/qcom-rpmh-regulator.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1462,7 +1462,7 @@ MODULE_DEVICE_TABLE(of, rpmh_regulator_match_table);
14621462
static struct platform_driver rpmh_regulator_driver = {
14631463
.driver = {
14641464
.name = "qcom-rpmh-regulator",
1465-
.probe_type = PROBE_FORCE_SYNCHRONOUS,
1465+
.probe_type = PROBE_PREFER_ASYNCHRONOUS,
14661466
.of_match_table = of_match_ptr(rpmh_regulator_match_table),
14671467
},
14681468
.probe = rpmh_regulator_probe,

0 commit comments

Comments
 (0)