mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-18 03:06:43 +00:00
net: sxgbe: Added phy_found error path
This patch adds phy_found error path when there is no phy device and changes bus_name. Signed-off-by: Byungho An <bh74.an@samsung.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
3ee2b7c4b6
commit
7b07bd4e51
@ -27,7 +27,7 @@
|
|||||||
#define SXGBE_SMA_PREAD_CMD 0x02 /* post read increament address */
|
#define SXGBE_SMA_PREAD_CMD 0x02 /* post read increament address */
|
||||||
#define SXGBE_SMA_READ_CMD 0x03 /* read command */
|
#define SXGBE_SMA_READ_CMD 0x03 /* read command */
|
||||||
#define SXGBE_SMA_SKIP_ADDRFRM 0x00040000 /* skip the address frame */
|
#define SXGBE_SMA_SKIP_ADDRFRM 0x00040000 /* skip the address frame */
|
||||||
#define SXGBE_MII_BUSY 0x00800000 /* mii busy */
|
#define SXGBE_MII_BUSY 0x00400000 /* mii busy */
|
||||||
|
|
||||||
static int sxgbe_mdio_busy_wait(void __iomem *ioaddr, unsigned int mii_data)
|
static int sxgbe_mdio_busy_wait(void __iomem *ioaddr, unsigned int mii_data)
|
||||||
{
|
{
|
||||||
@ -147,6 +147,7 @@ int sxgbe_mdio_register(struct net_device *ndev)
|
|||||||
struct sxgbe_mdio_bus_data *mdio_data = priv->plat->mdio_bus_data;
|
struct sxgbe_mdio_bus_data *mdio_data = priv->plat->mdio_bus_data;
|
||||||
int err, phy_addr;
|
int err, phy_addr;
|
||||||
int *irqlist;
|
int *irqlist;
|
||||||
|
bool phy_found = false;
|
||||||
bool act;
|
bool act;
|
||||||
|
|
||||||
/* allocate the new mdio bus */
|
/* allocate the new mdio bus */
|
||||||
@ -162,7 +163,7 @@ int sxgbe_mdio_register(struct net_device *ndev)
|
|||||||
irqlist = priv->mii_irq;
|
irqlist = priv->mii_irq;
|
||||||
|
|
||||||
/* assign mii bus fields */
|
/* assign mii bus fields */
|
||||||
mdio_bus->name = "samsxgbe";
|
mdio_bus->name = "sxgbe";
|
||||||
mdio_bus->read = &sxgbe_mdio_read;
|
mdio_bus->read = &sxgbe_mdio_read;
|
||||||
mdio_bus->write = &sxgbe_mdio_write;
|
mdio_bus->write = &sxgbe_mdio_write;
|
||||||
snprintf(mdio_bus->id, MII_BUS_ID_SIZE, "%s-%x",
|
snprintf(mdio_bus->id, MII_BUS_ID_SIZE, "%s-%x",
|
||||||
@ -216,13 +217,22 @@ int sxgbe_mdio_register(struct net_device *ndev)
|
|||||||
netdev_info(ndev, "PHY ID %08x at %d IRQ %s (%s)%s\n",
|
netdev_info(ndev, "PHY ID %08x at %d IRQ %s (%s)%s\n",
|
||||||
phy->phy_id, phy_addr, irq_str,
|
phy->phy_id, phy_addr, irq_str,
|
||||||
dev_name(&phy->dev), act ? " active" : "");
|
dev_name(&phy->dev), act ? " active" : "");
|
||||||
|
phy_found = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!phy_found) {
|
||||||
|
netdev_err(ndev, "PHY not found\n");
|
||||||
|
goto phyfound_err;
|
||||||
|
}
|
||||||
|
|
||||||
priv->mii = mdio_bus;
|
priv->mii = mdio_bus;
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
|
phyfound_err:
|
||||||
|
err = -ENODEV;
|
||||||
|
mdiobus_unregister(mdio_bus);
|
||||||
mdiobus_err:
|
mdiobus_err:
|
||||||
mdiobus_free(mdio_bus);
|
mdiobus_free(mdio_bus);
|
||||||
return err;
|
return err;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user