mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 04:18:39 +08:00
net: dsa: of: Allow ethernet-ports as encapsulating node
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>
This commit is contained in:
parent
5a18bb14c0
commit
85e05d263e
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user