net: dsa: sja1105: Don't error out on disabled ports with no phy-mode
The sja1105_parse_ports_node function was tested only on device trees
where all ports were enabled. Fix this check so that the driver
continues to probe only with the ports where status is not "disabled",
as expected.
Fixes: 8aa9ebccae
("net: dsa: Introduce driver for NXP SJA1105 5-port L2 switch")
Signed-off-by: Vladimir Oltean <vladimir.oltean@nxp.com>
Reviewed-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
86ffe920e6
commit
27afe0d34e
|
@ -582,7 +582,7 @@ static int sja1105_parse_ports_node(struct sja1105_private *priv,
|
||||||
struct device *dev = &priv->spidev->dev;
|
struct device *dev = &priv->spidev->dev;
|
||||||
struct device_node *child;
|
struct device_node *child;
|
||||||
|
|
||||||
for_each_child_of_node(ports_node, child) {
|
for_each_available_child_of_node(ports_node, child) {
|
||||||
struct device_node *phy_node;
|
struct device_node *phy_node;
|
||||||
phy_interface_t phy_mode;
|
phy_interface_t phy_mode;
|
||||||
u32 index;
|
u32 index;
|
||||||
|
|
Loading…
Reference in New Issue