mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
synced 2026-04-23 05:56:14 -04:00
ethernet: arc: mdio changes for future SoC glue layer devtree support
This is an api changes for the emac_mdio.c module. It will be required later when arc_emac_probe/arc_emac_remove will no longer use 'struct platform_device'. Signed-off-by: Romain Perier <romain.perier@gmail.com> Reviewed-by: Arnd Bergmann <arnd@arndb.de> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
f15f44e083
commit
93e91b3dda
@@ -100,7 +100,6 @@ static int arc_mdio_write(struct mii_bus *bus, int phy_addr,
|
||||
|
||||
/**
|
||||
* arc_mdio_probe - MDIO probe function.
|
||||
* @pdev: Pointer to platform device.
|
||||
* @priv: Pointer to ARC EMAC private data structure.
|
||||
*
|
||||
* returns: 0 on success, -ENOMEM when mdiobus_alloc
|
||||
@@ -108,7 +107,7 @@ static int arc_mdio_write(struct mii_bus *bus, int phy_addr,
|
||||
*
|
||||
* Sets up and registers the MDIO interface.
|
||||
*/
|
||||
int arc_mdio_probe(struct platform_device *pdev, struct arc_emac_priv *priv)
|
||||
int arc_mdio_probe(struct arc_emac_priv *priv)
|
||||
{
|
||||
struct mii_bus *bus;
|
||||
int error;
|
||||
@@ -124,9 +123,9 @@ int arc_mdio_probe(struct platform_device *pdev, struct arc_emac_priv *priv)
|
||||
bus->read = &arc_mdio_read;
|
||||
bus->write = &arc_mdio_write;
|
||||
|
||||
snprintf(bus->id, MII_BUS_ID_SIZE, "%s", pdev->name);
|
||||
snprintf(bus->id, MII_BUS_ID_SIZE, "%s", bus->name);
|
||||
|
||||
error = of_mdiobus_register(bus, pdev->dev.of_node);
|
||||
error = of_mdiobus_register(bus, priv->dev->of_node);
|
||||
if (error) {
|
||||
dev_err(priv->dev, "cannot register MDIO bus %s\n", bus->name);
|
||||
mdiobus_free(bus);
|
||||
|
||||
Reference in New Issue
Block a user