diff options
author | Douglas Anderson <dianders@chromium.org> | 2023-03-16 12:54:41 -0700 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2023-03-20 13:11:28 +0000 |
commit | 67dc71c61b64be85ce33d3332ca5511f9b1faef7 (patch) | |
tree | adf87cc6596c3084c9e66976530e22736d0b2e79 /drivers/regulator/rpi-panel-attiny-regulator.c | |
parent | d3b81d97d55871cb11412caedded440f1fddc4e9 (diff) | |
download | linux-67dc71c61b64be85ce33d3332ca5511f9b1faef7.tar.gz linux-67dc71c61b64be85ce33d3332ca5511f9b1faef7.tar.bz2 linux-67dc71c61b64be85ce33d3332ca5511f9b1faef7.zip |
regulator: Set PROBE_PREFER_ASYNCHRONOUS for drivers between 5.4 and 5.10
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.4 but did exist in Linux 5.10.
Signed-off-by: Douglas Anderson <dianders@chromium.org>
Link: https://lore.kernel.org/r/20230316125351.4.I01f21c98901641a009890590ddc1354c0f294e5e@changeid
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'drivers/regulator/rpi-panel-attiny-regulator.c')
-rw-r--r-- | drivers/regulator/rpi-panel-attiny-regulator.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/regulator/rpi-panel-attiny-regulator.c b/drivers/regulator/rpi-panel-attiny-regulator.c index 34514976475e..9afe961a87f1 100644 --- a/drivers/regulator/rpi-panel-attiny-regulator.c +++ b/drivers/regulator/rpi-panel-attiny-regulator.c @@ -396,6 +396,7 @@ MODULE_DEVICE_TABLE(of, attiny_dt_ids); static struct i2c_driver attiny_regulator_driver = { .driver = { .name = "rpi_touchscreen_attiny", + .probe_type = PROBE_PREFER_ASYNCHRONOUS, .of_match_table = of_match_ptr(attiny_dt_ids), }, .probe_new = attiny_i2c_probe, |