summaryrefslogtreecommitdiffstats
path: root/board
diff options
context:
space:
mode:
authorFabio Estevam <fabio.estevam@freescale.com>2014-01-04 17:36:33 -0200
committerStefano Babic <sbabic@denx.de>2014-01-13 11:52:28 +0100
commit12c20c0c9ba4c52fc512f7192c26c5b7d78f4cbe (patch)
treeaa0291e5c84dc0a49684be393017fc6f492e9d33 /board
parent92c707a5809095ddc4cff087b7e499779ece5d6b (diff)
downloadtalos-obmc-uboot-12c20c0c9ba4c52fc512f7192c26c5b7d78f4cbe.tar.gz
talos-obmc-uboot-12c20c0c9ba4c52fc512f7192c26c5b7d78f4cbe.zip
mx6slevk: 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>
Diffstat (limited to 'board')
-rw-r--r--board/freescale/mx6slevk/mx6slevk.c10
1 files changed, 1 insertions, 9 deletions
diff --git a/board/freescale/mx6slevk/mx6slevk.c b/board/freescale/mx6slevk/mx6slevk.c
index 643fdac2b3..dfc5746c7f 100644
--- a/board/freescale/mx6slevk/mx6slevk.c
+++ b/board/freescale/mx6slevk/mx6slevk.c
@@ -106,17 +106,9 @@ int board_mmc_init(bd_t *bis)
#ifdef CONFIG_FEC_MXC
int board_eth_init(bd_t *bis)
{
- int ret;
-
setup_iomux_fec();
- ret = cpu_eth_init(bis);
- if (ret) {
- printf("FEC MXC: %s:failed\n", __func__);
- return ret;
- }
-
- return 0;
+ return cpu_eth_init(bis);
}
static int setup_fec(void)
OpenPOWER on IntegriCloud