From: Fabio Estevam <[email protected]> When cpu_eth_init() fails we should not return success.
Signed-off-by: Fabio Estevam <[email protected]> --- board/wandboard/wandboard.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/board/wandboard/wandboard.c b/board/wandboard/wandboard.c index 99150f9..bf9898c 100644 --- a/board/wandboard/wandboard.c +++ b/board/wandboard/wandboard.c @@ -265,7 +265,7 @@ int board_eth_init(bd_t *bis) if (ret) printf("FEC MXC: %s:failed\n", __func__); - return 0; + return ret; } int board_early_init_f(void) -- 1.8.1.2 _______________________________________________ U-Boot mailing list [email protected] http://lists.denx.de/mailman/listinfo/u-boot

