mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-22 23:21:31 +00:00
titanium: 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. Cc: Stefan Roese <sr@denx.de> Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com> Acked-by: Stefan Roese <sr@denx.de>
This commit is contained in:
parent
14da759fb5
commit
8aa42441c8
1 changed files with 1 additions and 7 deletions
|
@ -264,15 +264,9 @@ int board_phy_config(struct phy_device *phydev)
|
||||||
|
|
||||||
int board_eth_init(bd_t *bis)
|
int board_eth_init(bd_t *bis)
|
||||||
{
|
{
|
||||||
int ret;
|
|
||||||
|
|
||||||
setup_iomux_enet();
|
setup_iomux_enet();
|
||||||
|
|
||||||
ret = cpu_eth_init(bis);
|
return cpu_eth_init(bis);
|
||||||
if (ret)
|
|
||||||
printf("FEC MXC: %s:failed\n", __func__);
|
|
||||||
|
|
||||||
return ret;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
int board_early_init_f(void)
|
int board_early_init_f(void)
|
||||||
|
|
Loading…
Add table
Reference in a new issue