Due to unified Ethernet Switch Device Tree Bindings allow for ethernet-ports as
encapsulating node as well.
Signed-off-by: Kurt Kanzenbach <kurt@linutronix.de>
Signed-off-by: David S. Miller <davem@davemloft.net>
 
        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) {