diff options
author | Fabio Estevam <fabio.estevam@freescale.com> | 2013-11-03 22:03:04 -0200 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2013-11-13 10:09:09 +0100 |
commit | c243a832c85d832151f647b1f83e6d6120527f34 (patch) | |
tree | a66ce2aaa265326e93d60a7d1b365a1730885148 /board/wandboard | |
parent | cffe815a7656420884e816bb9110ad052889405a (diff) |
wandboard: Return the error when cpu_eth_init() fails
When cpu_eth_init() fails we should not return success.
Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
Diffstat (limited to 'board/wandboard')
-rw-r--r-- | board/wandboard/wandboard.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/wandboard/wandboard.c b/board/wandboard/wandboard.c index 99150f9b895..bf9898c3fe0 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) |