aboutsummaryrefslogtreecommitdiffstats
path: root/net/dsa/dsa.c
diff options
context:
space:
mode:
authorTobias Waldekranz <tobias@waldekranz.com>2015-02-05 08:54:09 -0500
committerDavid S. Miller <davem@davemloft.net>2015-02-08 01:07:37 -0500
commite04449fcf2cd63dec176355a028bd28b4d469be9 (patch)
tree09092393163b21a8f41f5dda29d7b9a9e082515f /net/dsa/dsa.c
parent6e0ba47f9191511a91556b7ca2c491362680a0f3 (diff)
dsa: correctly determine the number of switches in a system
The number of connected switches was sourced from the number of children to the DSA node, change it to the number of available children, skipping any disabled switches. Fixes: 5e95329b701c4 ("dsa: add device tree bindings to register DSA switches") Signed-off-by: Tobias Waldekranz <tobias@waldekranz.com> Acked-by: Florian Fainelli <f.fainelli@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/dsa/dsa.c')
-rw-r--r--net/dsa/dsa.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/dsa/dsa.c b/net/dsa/dsa.c
index 37317149f918..2173402d87e0 100644
--- a/net/dsa/dsa.c
+++ b/net/dsa/dsa.c
@@ -603,7 +603,7 @@ static int dsa_of_probe(struct platform_device *pdev)
603 603
604 pdev->dev.platform_data = pd; 604 pdev->dev.platform_data = pd;
605 pd->netdev = &ethernet_dev->dev; 605 pd->netdev = &ethernet_dev->dev;
606 pd->nr_chips = of_get_child_count(np); 606 pd->nr_chips = of_get_available_child_count(np);
607 if (pd->nr_chips > DSA_MAX_SWITCHES) 607 if (pd->nr_chips > DSA_MAX_SWITCHES)
608 pd->nr_chips = DSA_MAX_SWITCHES; 608 pd->nr_chips = DSA_MAX_SWITCHES;
609 609