Skip to content
Snippets Groups Projects
Commit cfc3e1db authored by Tom Rini's avatar Tom Rini
Browse files

Merge patch series "mux: Drop usage of "u-boot,mux-autoprobe""

Roger Quadros <rogerq@kernel.org> 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.
parents 463a3162 98851614
No related branches found
No related tags found
No related merge requests found
......@@ -185,7 +185,7 @@
};
&serdes_ln_ctrl {
u-boot,mux-autoprobe;
bootph-all;
};
&usbss0 {
......
......@@ -165,7 +165,6 @@
&serdes_ln_ctrl {
bootph-all;
u-boot,mux-autoprobe;
};
&serdes2_usb_link {
......@@ -174,7 +173,6 @@
&usb_serdes_mux {
bootph-all;
u-boot,mux-autoprobe;
};
&serdes_wiz2 {
......
......@@ -94,11 +94,11 @@
};
&serdes_ln_ctrl {
u-boot,mux-autoprobe;
bootph-all;
};
&usb_serdes_mux {
u-boot,mux-autoprobe;
bootph-all;
};
&main_usbss0_pins_default {
......
......@@ -90,11 +90,11 @@
};
&serdes_ln_ctrl {
u-boot,mux-autoprobe;
bootph-all;
};
&usb_serdes_mux {
u-boot,mux-autoprobe;
bootph-all;
};
&main_usbss0_pins_default {
......
......@@ -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",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment