Switch users of fdt_is_enabled to use ofw_bus_node_status_okay. These are
equivalent, so to prepare to remove the former move users to call the latter. Sponsored by: DARPA, AFRL
This commit is contained in:
parent
8ff7c82ffb
commit
a272a06bc1
@ -414,7 +414,7 @@ ccm_fdt_set(struct ccm_softc *sc)
|
||||
child = OF_child(child);
|
||||
}
|
||||
|
||||
if (!fdt_is_enabled(child))
|
||||
if (!ofw_bus_node_status_okay(child))
|
||||
continue;
|
||||
|
||||
if ((len = OF_getproplen(child, "clock_names")) > 0) {
|
||||
|
@ -146,7 +146,7 @@ pinmux_set(struct iomuxc_softc *sc)
|
||||
child = OF_child(child);
|
||||
}
|
||||
|
||||
if (!fdt_is_enabled(child))
|
||||
if (!ofw_bus_node_status_okay(child))
|
||||
continue;
|
||||
|
||||
if ((len = OF_getproplen(child, "iomux_config")) > 0) {
|
||||
|
@ -272,7 +272,7 @@ localbus_attach(device_t dev)
|
||||
dt_child = OF_peer(dt_child)) {
|
||||
|
||||
/* Check and process 'status' property. */
|
||||
if (!(fdt_is_enabled(dt_child)))
|
||||
if (!(ofw_bus_node_status_okay(dt_child)))
|
||||
continue;
|
||||
|
||||
if (!(fdt_pm_is_enabled(dt_child)))
|
||||
|
@ -271,7 +271,7 @@ int as3722_pinmux_configure(device_t dev, phandle_t cfgxref)
|
||||
cfgnode = OF_node_from_xref(cfgxref);
|
||||
|
||||
for (node = OF_child(cfgnode); node != 0; node = OF_peer(node)) {
|
||||
if (!fdt_is_enabled(node))
|
||||
if (!ofw_bus_node_status_okay(node))
|
||||
continue;
|
||||
rv = as3722_pinmux_process_node(sc, node);
|
||||
if (rv != 0)
|
||||
|
@ -968,7 +968,7 @@ process_pad(struct padctl_softc *sc, phandle_t node)
|
||||
}
|
||||
|
||||
for (node = OF_child(node); node != 0; node = OF_peer(node)) {
|
||||
if (!fdt_is_enabled(node))
|
||||
if (!ofw_bus_node_status_okay(node))
|
||||
continue;
|
||||
|
||||
rv = process_lane(sc, node, pad);
|
||||
@ -1079,7 +1079,7 @@ parse_fdt(struct padctl_softc *sc, phandle_t base_node)
|
||||
return (ENXIO);
|
||||
}
|
||||
for (node = OF_child(node); node != 0; node = OF_peer(node)) {
|
||||
if (!fdt_is_enabled(node))
|
||||
if (!ofw_bus_node_status_okay(node))
|
||||
continue;
|
||||
rv = process_pad(sc, node);
|
||||
if (rv != 0)
|
||||
@ -1092,7 +1092,7 @@ parse_fdt(struct padctl_softc *sc, phandle_t base_node)
|
||||
return (ENXIO);
|
||||
}
|
||||
for (node = OF_child(node); node != 0; node = OF_peer(node)) {
|
||||
if (!fdt_is_enabled(node))
|
||||
if (!ofw_bus_node_status_okay(node))
|
||||
continue;
|
||||
rv = process_port(sc, node);
|
||||
if (rv != 0)
|
||||
|
@ -710,7 +710,7 @@ static int pinmux_configure(device_t dev, phandle_t cfgxref)
|
||||
|
||||
|
||||
for (node = OF_child(cfgnode); node != 0; node = OF_peer(node)) {
|
||||
if (!fdt_is_enabled(node))
|
||||
if (!ofw_bus_node_status_okay(node))
|
||||
continue;
|
||||
rv = pinmux_process_node(sc, node);
|
||||
}
|
||||
|
@ -119,7 +119,7 @@ pinctrl_configure_children(device_t pinctrl, phandle_t parent)
|
||||
int i, nconfigs;
|
||||
|
||||
for (node = OF_child(parent); node != 0; node = OF_peer(node)) {
|
||||
if (!fdt_is_enabled(node))
|
||||
if (!ofw_bus_node_status_okay(node))
|
||||
continue;
|
||||
pinctrl_configure_children(pinctrl, node);
|
||||
nconfigs = OF_getencprop_alloc(node, "pinctrl-0",
|
||||
|
Loading…
Reference in New Issue
Block a user