diff options
| author | Wolfgang Denk <wd@denx.de> | 2012-07-12 08:23:58 +0200 |
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2012-07-12 08:23:58 +0200 |
| commit | 0878222fed3fafbfd0b1f2e5a6b2da90a81e910d (patch) | |
| tree | f88ba4ad1c5f06e6a772d5062c526d8153a71678 /drivers/net/tsec.c | |
| parent | 0b15d51ed07db4c318d9c6b02b394ba5a3bc4296 (diff) | |
| parent | 154177e14a141468374f438ed3096ab097b79976 (diff) | |
| download | olio-uboot-2014.01-0878222fed3fafbfd0b1f2e5a6b2da90a81e910d.tar.xz olio-uboot-2014.01-0878222fed3fafbfd0b1f2e5a6b2da90a81e910d.zip | |
Merge branch 'next' of git://git.denx.de/u-boot-net into next
* 'next' of git://git.denx.de/u-boot-net:
net: Inline the new eth_setenv_enetaddr_by_index function
net: allow setting env enetaddr from net device setting
net/designware: Consecutive writes to the same register to be avoided
CACHE: net: asix: Fix asix driver to work with data cache on
net: phy: micrel: make ksz9021 phy accessible
net: abort network initialization if the PHY driver fails
phylib: phy_startup() should return an error code on failure
net: tftp: fix type of block arg to store_block
Signed-off-by: Wolfgang Denk <wd@denx.de>
Diffstat (limited to 'drivers/net/tsec.c')
| -rw-r--r-- | drivers/net/tsec.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/drivers/net/tsec.c b/drivers/net/tsec.c index 3c1c8f079..f5e314b9e 100644 --- a/drivers/net/tsec.c +++ b/drivers/net/tsec.c @@ -480,6 +480,7 @@ static int tsec_init(struct eth_device *dev, bd_t * bd) int i; struct tsec_private *priv = (struct tsec_private *)dev->priv; tsec_t *regs = priv->regs; + int ret; /* Make sure the controller is stopped */ tsec_halt(dev); @@ -511,7 +512,12 @@ static int tsec_init(struct eth_device *dev, bd_t * bd) startup_tsec(dev); /* Start up the PHY */ - phy_startup(priv->phydev); + ret = phy_startup(priv->phydev); + if (ret) { + printf("Could not initialize PHY %s\n", + priv->phydev->dev->name); + return ret; + } adjust_link(priv, priv->phydev); |