aboutsummaryrefslogtreecommitdiffstats
path: root/net/dsa
diff options
context:
space:
mode:
authorFlorian Fainelli <f.fainelli@gmail.com>2014-09-15 17:48:08 -0400
committerDavid S. Miller <davem@davemloft.net>2014-09-15 17:52:48 -0400
commitc1f570a6abc192f047550743f9957b617af605af (patch)
treefb948bf83a01f3b2e5db24f3f6c0c31e9febc279 /net/dsa
parent10ee1c34bedcc0e2a196d85ec87806fd111b5e79 (diff)
net: dsa: fix mii_bus to host_dev replacement
dsa_of_probe() still used cd->mii_bus instead of cd->host_dev when building with CONFIG_OF=y. Fix this by making the replacement here as well. Fixes: b4d2394d01b ("dsa: Replace mii_bus with a generic host device") Signed-off-by: Florian Fainelli <f.fainelli@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/dsa')
-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 b34d6978d773..6e40928ec0e7 100644
--- a/net/dsa/dsa.c
+++ b/net/dsa/dsa.c
@@ -440,7 +440,7 @@ static int dsa_of_probe(struct platform_device *pdev)
440 cd = &pd->chip[chip_index]; 440 cd = &pd->chip[chip_index];
441 441
442 cd->of_node = child; 442 cd->of_node = child;
443 cd->mii_bus = &mdio_bus->dev; 443 cd->host_dev = &mdio_bus->dev;
444 444
445 sw_addr = of_get_property(child, "reg", NULL); 445 sw_addr = of_get_property(child, "reg", NULL);
446 if (!sw_addr) 446 if (!sw_addr)