]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
net: dsa: fix mii_bus to host_dev replacement
authorFlorian Fainelli <f.fainelli@gmail.com>
Mon, 15 Sep 2014 21:48:08 +0000 (14:48 -0700)
committerDavid S. Miller <davem@davemloft.net>
Mon, 15 Sep 2014 21:52:48 +0000 (17:52 -0400)
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>
net/dsa/dsa.c

index b34d6978d7734dd992655e6e9bfa81282d86d64b..6e40928ec0e76ba09cac488bc75ae92416465b1b 100644 (file)
@@ -440,7 +440,7 @@ static int dsa_of_probe(struct platform_device *pdev)
                cd = &pd->chip[chip_index];
 
                cd->of_node = child;
-               cd->mii_bus = &mdio_bus->dev;
+               cd->host_dev = &mdio_bus->dev;
 
                sw_addr = of_get_property(child, "reg", NULL);
                if (!sw_addr)