]> git.sur5r.net Git - u-boot/blobdiff - net/eth.c
Merge with /home/wd/git/u-boot/custodian/u-boot-avr32; code cleanup.
[u-boot] / net / eth.c
index 6a344256e755938ba2c22e3b9579f6a4b3b0ce07..b3e281fdcac47aebe36a5ef461a580e37e4c1855 100644 (file)
--- a/net/eth.c
+++ b/net/eth.c
@@ -55,6 +55,7 @@ extern int skge_initialize(bd_t*);
 extern int tsec_initialize(bd_t*, int, char *);
 extern int npe_initialize(bd_t *);
 extern int uec_initialize(int);
+extern int bfin_EMAC_initialize(bd_t *);
 extern int atstk1000_eth_initialize(bd_t *);
 
 static struct eth_device *eth_devices, *eth_current;
@@ -256,6 +257,9 @@ int eth_initialize(bd_t *bis)
 #if defined(CONFIG_RTL8169)
        rtl8169_initialize(bis);
 #endif
+#if defined(CONFIG_BF537)
+       bfin_EMAC_initialize(bis);
+#endif
 #if defined(CONFIG_ATSTK1000)
        atstk1000_eth_initialize(bis);
 #endif