diff options
| author | Tom Rini <[email protected]> | 2024-02-28 19:20:00 -0500 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2024-02-28 19:20:00 -0500 |
| commit | cfc3e1db499d7d4307559cc911aa914dd131f945 (patch) | |
| tree | f6a54d49134d05934a041500c5e866e4e00010cf /drivers | |
| parent | 463a3162dd661a53e2eb735fe63582874076f73f (diff) | |
| parent | 9885161469c3cd56b3632c8fcb414e9b3d0b8cf8 (diff) | |
Merge patch series "mux: Drop usage of "u-boot,mux-autoprobe""
Roger Quadros <[email protected]> says:
MUX driver should autoprobe if the device tree has "idle-states"
property. Drop using the custom "u-boot,mux-autoprobe" property
in TI device trees.
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/mux/mux-uclass.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/mux/mux-uclass.c b/drivers/mux/mux-uclass.c index c98576ceb81..8833888ded3 100644 --- a/drivers/mux/mux-uclass.c +++ b/drivers/mux/mux-uclass.c @@ -318,7 +318,8 @@ int dm_mux_init(void) return ret; } uclass_foreach_dev(dev, uc) { - if (dev_read_bool(dev, "u-boot,mux-autoprobe")) { + if (dev_read_bool(dev, "u-boot,mux-autoprobe") || + dev_read_bool(dev, "idle-states")) { ret = device_probe(dev); if (ret) log_debug("unable to probe device %s\n", |
