Skip to content
Snippets Groups Projects
Commit 1037dc0a authored by Fabio Estevam's avatar Fabio Estevam Committed by Stefano Babic
Browse files

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: default avatarFabio Estevam <fabio.estevam@freescale.com>
parent 8aa42441
No related branches found
No related tags found
No related merge requests found
......@@ -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) {
......
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