1
0
Fork 0

mx6qarm2: Remove unneeded error message when cpu_eth_init() fails

There is no need to print an error message when cpu_eth_init() fails because
net/eth.c already prints it.

Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
utp
Fabio Estevam 2014-01-04 17:36:30 -02:00 committed by Stefano Babic
parent 8aa42441c8
commit 1037dc0a2b
1 changed files with 2 additions and 5 deletions

View File

@ -186,13 +186,10 @@ int fecmxc_mii_postcall(int phy)
int board_eth_init(bd_t *bis)
{
struct eth_device *dev;
int ret;
int ret = cpu_eth_init(bis);
ret = cpu_eth_init(bis);
if (ret) {
printf("FEC MXC: %s:failed\n", __func__);
if (ret)
return ret;
}
dev = eth_get_dev_by_name("FEC");
if (!dev) {