Skip to content
Snippets Groups Projects
Commit eef24480 authored by Troy Kisky's avatar Troy Kisky Committed by Stefano Babic
Browse files

net: fec_mxc: have fecmxc_initialize call fecmxc_initialize_multi


Having only one call to fec_probe will ease the changing of its
parameters.

Signed-off-by: default avatarTroy Kisky <troy.kisky@boundarydevices.com>
parent 575c5cc0
No related branches found
No related tags found
No related merge requests found
......@@ -1021,27 +1021,19 @@ err1:
return ret;
}
#ifdef CONFIG_FEC_MXC_PHYADDR
int fecmxc_initialize(bd_t *bd)
{
int lout = 1;
debug("eth_init: fec_probe(bd)\n");
lout = fec_probe(bd, -1, CONFIG_FEC_MXC_PHYADDR, IMX_FEC_BASE);
return lout;
}
#endif
int fecmxc_initialize_multi(bd_t *bd, int dev_id, int phy_id, uint32_t addr)
{
int lout = 1;
debug("eth_init: fec_probe(bd, %i, %i) @ %08x\n", dev_id, phy_id, addr);
lout = fec_probe(bd, dev_id, phy_id, addr);
return fec_probe(bd, dev_id, phy_id, addr);
}
return lout;
#ifdef CONFIG_FEC_MXC_PHYADDR
int fecmxc_initialize(bd_t *bd)
{
return fecmxc_initialize_multi(bd, -1, CONFIG_FEC_MXC_PHYADDR,
IMX_FEC_BASE);
}
#endif
#ifndef CONFIG_PHYLIB
int fecmxc_register_mii_postcall(struct eth_device *dev, int (*cb)(int))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment