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

mx6slevk: Return from cpu_eth_init() directly


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

In order to simplify the code, just return the value from cpu_eth_init(bis)
directly.

Signed-off-by: default avatarFabio Estevam <fabio.estevam@freescale.com>
parent 92c707a5
No related branches found
No related tags found
No related merge requests found
......@@ -106,17 +106,9 @@ int board_mmc_init(bd_t *bis)
#ifdef CONFIG_FEC_MXC
int board_eth_init(bd_t *bis)
{
int ret;
setup_iomux_fec();
ret = cpu_eth_init(bis);
if (ret) {
printf("FEC MXC: %s:failed\n", __func__);
return ret;
}
return 0;
return cpu_eth_init(bis);
}
static int setup_fec(void)
......
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