diff options
author | wdenk <wdenk> | 2003-07-16 21:53:01 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2003-07-16 21:53:01 +0000 |
commit | 945af8d723a29e9b6289d84250745ed0dc16fc81 (patch) | |
tree | 6798d0b717c05b01742df0c410038c702b8a1979 /net/eth.c | |
parent | cb4dbb7bbc271f988e14ec353a5e86d7f10e1da0 (diff) | |
download | u-boot-imx-945af8d723a29e9b6289d84250745ed0dc16fc81.zip u-boot-imx-945af8d723a29e9b6289d84250745ed0dc16fc81.tar.gz u-boot-imx-945af8d723a29e9b6289d84250745ed0dc16fc81.tar.bz2 |
* Add support for IceCube board (with MGT5100 and MPC5200 CPUs)
* Add support for MGT5100 and MPC5200 processors
Diffstat (limited to 'net/eth.c')
-rw-r--r-- | net/eth.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -43,6 +43,7 @@ extern int scc_initialize(bd_t*); extern int inca_switch_initialize(bd_t*); extern int ppc_4xx_eth_initialize(bd_t *); extern int plb2800_eth_initialize(bd_t*); +extern int mpc5xxx_fec_initialize(bd_t*); static struct eth_device *eth_devices, *eth_current; @@ -138,6 +139,9 @@ int eth_initialize(bd_t *bis) #if defined(FEC_ENET) || defined(CONFIG_ETHER_ON_FCC) fec_initialize(bis); #endif +#if defined(CONFIG_MPC5XXX_FEC) + mpc5xxx_fec_initialize(bis); +#endif if (!eth_devices) { puts ("No ethernet found.\n"); |