Commit 5186c4a0 authored by Colin Foster's avatar Colin Foster Committed by David S. Miller

net: dsa: ocelot: seville: utilize of_mdiobus_register

Switch seville to use of_mdiobus_register(bus, NULL) instead of just
mdiobus_register. This code is about to be pulled into a separate module
that can optionally define ports by the device_node.
Signed-off-by: default avatarColin Foster <colin.foster@in-advantage.com>
Reviewed-by: default avatarFlorian Fainelli <f.fainelli@gmail.com>
Reviewed-by: default avatarVladimir Oltean <vladimir.oltean@nxp.com>
Tested-by: default avatarVladimir Oltean <vladimir.oltean@nxp.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent a27a7628
...@@ -10,6 +10,7 @@ ...@@ -10,6 +10,7 @@
#include <linux/pcs-lynx.h> #include <linux/pcs-lynx.h>
#include <linux/dsa/ocelot.h> #include <linux/dsa/ocelot.h>
#include <linux/iopoll.h> #include <linux/iopoll.h>
#include <linux/of_mdio.h>
#include "felix.h" #include "felix.h"
#define MSCC_MIIM_CMD_OPR_WRITE BIT(1) #define MSCC_MIIM_CMD_OPR_WRITE BIT(1)
...@@ -1112,7 +1113,7 @@ static int vsc9953_mdio_bus_alloc(struct ocelot *ocelot) ...@@ -1112,7 +1113,7 @@ static int vsc9953_mdio_bus_alloc(struct ocelot *ocelot)
snprintf(bus->id, MII_BUS_ID_SIZE, "%s-imdio", dev_name(dev)); snprintf(bus->id, MII_BUS_ID_SIZE, "%s-imdio", dev_name(dev));
/* Needed in order to initialize the bus mutex lock */ /* Needed in order to initialize the bus mutex lock */
rc = mdiobus_register(bus); rc = of_mdiobus_register(bus, NULL);
if (rc < 0) { if (rc < 0) {
dev_err(dev, "failed to register MDIO bus\n"); dev_err(dev, "failed to register MDIO bus\n");
return rc; return rc;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment