Skip to content
Snippets Groups Projects
Commit 0ea38db9 authored by Simon Glass's avatar Simon Glass
Browse files

net: designware: Adjust dw_adjust_link() to return an error


This function can fail, so return the error if there is one.

Signed-off-by: default avatarSimon Glass <sjg@chromium.org>
Signed-off-by: default avatarRomain Perier <romain.perier@collabora.com>
Acked-by: default avatarJoe Hershberger <joe.hershberger@ni.com>
parent b9e08d0e
No related branches found
No related tags found
No related merge requests found
......@@ -230,14 +230,14 @@ static int _dw_write_hwaddr(struct dw_eth_dev *priv, u8 *mac_id)
return 0;
}
static void dw_adjust_link(struct eth_mac_regs *mac_p,
struct phy_device *phydev)
static int dw_adjust_link(struct dw_eth_dev *priv, struct eth_mac_regs *mac_p,
struct phy_device *phydev)
{
u32 conf = readl(&mac_p->conf) | FRAMEBURSTENABLE | DISABLERXOWN;
if (!phydev->link) {
printf("%s: No link.\n", phydev->dev->name);
return;
return 0;
}
if (phydev->speed != 1000)
......@@ -256,6 +256,8 @@ static void dw_adjust_link(struct eth_mac_regs *mac_p,
printf("Speed: %d, %s duplex%s\n", phydev->speed,
(phydev->duplex) ? "full" : "half",
(phydev->port == PORT_FIBRE) ? ", fiber mode" : "");
return 0;
}
static void _dw_eth_halt(struct dw_eth_dev *priv)
......@@ -321,7 +323,9 @@ static int _dw_eth_init(struct dw_eth_dev *priv, u8 *enetaddr)
return ret;
}
dw_adjust_link(mac_p, priv->phydev);
ret = dw_adjust_link(priv, mac_p, priv->phydev);
if (ret)
return ret;
if (!priv->phydev->link)
return -EIO;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment