diff options
author | Douglas Anderson <dianders@chromium.org> | 2023-03-16 22:54:42 +0300 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2023-03-20 16:11:29 +0300 |
commit | 46600ab142f8c2ecc2a647175fd86d53bc285a9a (patch) | |
tree | 47cbe1780476e23bad9297e7edd2945de3908ca0 /drivers/regulator/rt4831-regulator.c | |
parent | 67dc71c61b64be85ce33d3332ca5511f9b1faef7 (diff) | |
download | linux-46600ab142f8c2ecc2a647175fd86d53bc285a9a.tar.xz |
regulator: Set PROBE_PREFER_ASYNCHRONOUS for drivers between 5.10 and 5.15
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.10 but did exist in Linux 5.15.
Signed-off-by: Douglas Anderson <dianders@chromium.org>
Link: https://lore.kernel.org/r/20230316125351.5.Ia0e6d859bdfe42ea5c187fb1eb4705c1b5ea23a1@changeid
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'drivers/regulator/rt4831-regulator.c')
-rw-r--r-- | drivers/regulator/rt4831-regulator.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/regulator/rt4831-regulator.c b/drivers/regulator/rt4831-regulator.c index 2016062cd7ef..97e6f7e2a0ba 100644 --- a/drivers/regulator/rt4831-regulator.c +++ b/drivers/regulator/rt4831-regulator.c @@ -194,6 +194,7 @@ MODULE_DEVICE_TABLE(platform, rt4831_regulator_match); static struct platform_driver rt4831_regulator_driver = { .driver = { .name = "rt4831-regulator", + .probe_type = PROBE_PREFER_ASYNCHRONOUS, }, .id_table = rt4831_regulator_match, .probe = rt4831_regulator_probe, |