diff options
author | Douglas Anderson <dianders@chromium.org> | 2023-03-16 12:54:43 -0700 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2023-03-20 13:11:29 +0000 |
commit | 41cff178e3d6df28acd8490519a656c509b4496f (patch) | |
tree | 031f96671bd13e98c27c4d76c3932b3e3c9e57e8 /drivers/regulator/rt5120-regulator.c | |
parent | 46600ab142f8c2ecc2a647175fd86d53bc285a9a (diff) |
regulator: Set PROBE_PREFER_ASYNCHRONOUS for drivers between 5.15 and 6.1
This follows on the change ("regulator: Set PROBE_PREFER_ASYNCHRONOUS
for drivers that existed in 4.14") but changes regulators didn't exist
in Linux 5.15 but did exist in Linux 6.1.
Signed-off-by: Douglas Anderson <dianders@chromium.org>
Link: https://lore.kernel.org/r/20230316125351.6.Ibc8a86ddd5055ebbbe487a529199db7b36ccad1a@changeid
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'drivers/regulator/rt5120-regulator.c')
-rw-r--r-- | drivers/regulator/rt5120-regulator.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/regulator/rt5120-regulator.c b/drivers/regulator/rt5120-regulator.c index 8173ede09414..a388ac70865f 100644 --- a/drivers/regulator/rt5120-regulator.c +++ b/drivers/regulator/rt5120-regulator.c @@ -409,6 +409,7 @@ MODULE_DEVICE_TABLE(platform, rt5120_regulator_dev_table); static struct platform_driver rt5120_regulator_driver = { .driver = { .name = "rt5120-regulator", + .probe_type = PROBE_PREFER_ASYNCHRONOUS, }, .id_table = rt5120_regulator_dev_table, .probe = rt5120_regulator_probe, |