diff options
| author | Tom Rini <[email protected]> | 2024-06-28 13:55:10 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2024-06-28 13:55:10 -0600 |
| commit | 8937bb265a7f2251c1bd999784a4ef10e9c6080d (patch) | |
| tree | 861f7c1fa3ac8f1da27b840aeb7407fbc01ba411 /drivers | |
| parent | efee71ab4d51e4ee68960a93b0c23682be040bd9 (diff) | |
| parent | d780965927d4b176857895b5d64fae85ccd04eb8 (diff) | |
Merge patch series "Bug-fixes for a few boards (reduced series)"
Simon Glass <[email protected]> says:
This series includes fixes to get some rockchip and nvidia boards
working again. It also drops the broken Beaglebone Black config and
provides a devicetree fix for coral (x86).
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/power/regulator/regulator-uclass.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/power/regulator/regulator-uclass.c b/drivers/power/regulator/regulator-uclass.c index 77d101f262e..d9e1fb68295 100644 --- a/drivers/power/regulator/regulator-uclass.c +++ b/drivers/power/regulator/regulator-uclass.c @@ -518,7 +518,7 @@ int regulators_enable_boot_on(bool verbose) dev; uclass_next_device(&dev)) { ret = regulator_autoset(dev); - if (ret == -EMEDIUMTYPE) { + if (ret == -EMEDIUMTYPE || ret == -EALREADY) { ret = 0; continue; } |
