]> git.kernelconcepts.de Git - karo-tx-uboot.git/blobdiff - net/eth.c
* Add support for IceCube board (with MGT5100 and MPC5200 CPUs)
[karo-tx-uboot.git] / net / eth.c
index 468b84cde0787550c39ceeeb545e540e2a09cd39..53798ac069674b8beaf0e28e9eb33ebc420dd59f 100644 (file)
--- a/net/eth.c
+++ b/net/eth.c
@@ -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");