summaryrefslogtreecommitdiff
path: root/drivers/net/rswitch.c
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2024-12-23 08:45:34 -0600
committerTom Rini <trini@konsulko.com>2024-12-23 08:45:34 -0600
commit0d05bd2058bc5f415f0e3460f961e6414877db5a (patch)
tree6757b7c8f06cbe4e1116e76f3383fd821666690f /drivers/net/rswitch.c
parentcfe57427c28763fd94e5bdcf89de9dabca4b1684 (diff)
parent70da4f28592d0a2296b27a9126da97cc3b30891e (diff)
Merge branch 'master' of https://source.denx.de/u-boot/custodians/u-boot-sh
Diffstat (limited to 'drivers/net/rswitch.c')
-rw-r--r--drivers/net/rswitch.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/net/rswitch.c b/drivers/net/rswitch.c
index 97b5d1b75c1..57eff748c90 100644
--- a/drivers/net/rswitch.c
+++ b/drivers/net/rswitch.c
@@ -1113,6 +1113,9 @@ static int rswitch_bind(struct udevice *parent)
return -ENOENT;
ofnode_for_each_subnode(node, ports_np) {
+ if (!ofnode_is_enabled(node))
+ continue;
+
ret = device_bind_with_driver_data(parent, drv,
ofnode_get_name(node),
(ulong)priv, node, &dev);