Due to unified Ethernet Switch Device Tree Bindings allow for ethernet-ports as
encapsulating node as well.

Signed-off-by: Kurt Kanzenbach <k...@linutronix.de>
---
 net/dsa/dsa2.c | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/net/dsa/dsa2.c b/net/dsa/dsa2.c
index e055efff390b..c0ffc7a2b65f 100644
--- a/net/dsa/dsa2.c
+++ b/net/dsa/dsa2.c
@@ -727,8 +727,12 @@ static int dsa_switch_parse_ports_of(struct dsa_switch *ds,
 
        ports = of_get_child_by_name(dn, "ports");
        if (!ports) {
-               dev_err(ds->dev, "no ports child node found\n");
-               return -EINVAL;
+               /* The second possibility is "ethernet-ports" */
+               ports = of_get_child_by_name(dn, "ethernet-ports");
+               if (!ports) {
+                       dev_err(ds->dev, "no ports child node found\n");
+                       return -EINVAL;
+               }
        }
 
        for_each_available_child_of_node(ports, port) {
-- 
2.20.1

Reply via email to