From: Fabio Estevam Date: Mon, 4 Nov 2013 00:03:04 +0000 (-0200) Subject: wandboard: Return the error when cpu_eth_init() fails X-Git-Tag: v2014.01-rc3~9^2~47^2~48 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=c243a832c85d832151f647b1f83e6d6120527f34;p=u-boot wandboard: Return the error when cpu_eth_init() fails When cpu_eth_init() fails we should not return success. Signed-off-by: Fabio Estevam --- diff --git a/board/wandboard/wandboard.c b/board/wandboard/wandboard.c index 99150f9b89..bf9898c3fe 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)