]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
ftgmac100: Make the MDIO bus a child of the ethernet device
authorBenjamin Herrenschmidt <benh@kernel.crashing.org>
Mon, 24 Jul 2017 06:59:07 +0000 (16:59 +1000)
committerDavid S. Miller <davem@davemloft.net>
Tue, 25 Jul 2017 00:23:55 +0000 (17:23 -0700)
Populate mii_bus->parent with our own platform device before
registering, which makes it easier to locate the MDIO bus
in sysfs when trying to diagnose problems.

Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Acked-by: Joel Stanley <joel@jms.id.au>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/faraday/ftgmac100.c

index bfda0b2e2b82ea0fbb3b9609bd50a48591e55bb2..cdb979440ca54fda97753810a93e885afc7a5d89 100644 (file)
@@ -1682,6 +1682,7 @@ static int ftgmac100_setup_mdio(struct net_device *netdev)
        priv->mii_bus->name = "ftgmac100_mdio";
        snprintf(priv->mii_bus->id, MII_BUS_ID_SIZE, "%s-%d",
                 pdev->name, pdev->id);
+       priv->mii_bus->parent = priv->dev;
        priv->mii_bus->priv = priv->netdev;
        priv->mii_bus->read = ftgmac100_mdiobus_read;
        priv->mii_bus->write = ftgmac100_mdiobus_write;