mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-28 15:41:40 +00:00
mx6sxsabresd: Simplify the return value of setup_fec()
We can simply the return the value from enable_fec_anatop_clock() to make the code smaller and simpler. Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
This commit is contained in:
parent
da5019e2b3
commit
d7bc7e6031
1 changed files with 1 additions and 6 deletions
|
@ -119,7 +119,6 @@ static int setup_fec(void)
|
|||
{
|
||||
struct iomuxc *iomuxc_regs = (struct iomuxc *)IOMUXC_BASE_ADDR;
|
||||
struct anatop_regs *anatop = (struct anatop_regs *)ANATOP_BASE_ADDR;
|
||||
int ret;
|
||||
int reg;
|
||||
|
||||
/* Use 125MHz anatop loopback REF_CLK1 for ENET1 */
|
||||
|
@ -140,11 +139,7 @@ static int setup_fec(void)
|
|||
reg |= BM_ANADIG_PLL_ENET_REF_25M_ENABLE;
|
||||
writel(reg, &anatop->pll_enet);
|
||||
|
||||
ret = enable_fec_anatop_clock(ENET_125MHz);
|
||||
if (ret)
|
||||
return ret;
|
||||
|
||||
return 0;
|
||||
return enable_fec_anatop_clock(ENET_125MHz);
|
||||
}
|
||||
|
||||
int board_eth_init(bd_t *bis)
|
||||
|
|
Loading…
Reference in a new issue