mirror of
https://xff.cz/git/u-boot/
synced 2025-09-01 08:42:12 +02:00
hummingboard: 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: Fabio Estevam <fabio.estevam@freescale.com>
This commit is contained in:
committed by
Stefano Babic
parent
16197bb8ba
commit
c0da86225f
@@ -156,11 +156,7 @@ int board_eth_init(bd_t *bis)
|
|||||||
|
|
||||||
setup_iomux_enet();
|
setup_iomux_enet();
|
||||||
|
|
||||||
ret = cpu_eth_init(bis);
|
return cpu_eth_init(bis);
|
||||||
if (ret)
|
|
||||||
printf("FEC MXC: %s:failed\n", __func__);
|
|
||||||
|
|
||||||
return ret;
|
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user