mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2025-01-08 23:04:35 +08:00
net: dsa: sja1105: be compatible with "ethernet-ports" OF node name
Since commit f2f3e09396be ("net: dsa: sja1105: be compatible with "ethernet-ports" OF node name"), DSA supports the "ethernet-ports" name for the container node of the ports, but the sja1105 driver doesn't, because it handles some device tree parsing of its own. Add the second node name as a fallback. Signed-off-by: Vladimir Oltean <vladimir.oltean@nxp.com> Reviewed-by: Florian Fainelli <f.fainelli@gmail.com> Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
parent
44fdd2edb3
commit
15074a361f
@ -885,6 +885,8 @@ static int sja1105_parse_dt(struct sja1105_private *priv,
|
||||
int rc;
|
||||
|
||||
ports_node = of_get_child_by_name(switch_node, "ports");
|
||||
if (!ports_node)
|
||||
ports_node = of_get_child_by_name(switch_node, "ethernet-ports");
|
||||
if (!ports_node) {
|
||||
dev_err(dev, "Incorrect bindings: absent \"ports\" node\n");
|
||||
return -ENODEV;
|
||||
|
Loading…
Reference in New Issue
Block a user