From: Fabio Estevam <fabio.este...@freescale.com> 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.este...@freescale.com> --- Changes since v1: - Separate declarations and code by a blank line board/freescale/mx6qarm2/mx6qarm2.c | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/board/freescale/mx6qarm2/mx6qarm2.c b/board/freescale/mx6qarm2/mx6qarm2.c index e063407..6c51f3a 100644 --- a/board/freescale/mx6qarm2/mx6qarm2.c +++ b/board/freescale/mx6qarm2/mx6qarm2.c @@ -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) { -- 1.8.1.2 _______________________________________________ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot