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.
This commit is contained in:
@@ -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",
|
||||
|
||||
Reference in New Issue
Block a user