]> git.sur5r.net Git - u-boot/blobdiff - net/eth.c
Moved initialization of TULIP Ethernet controller to board_eth_init()
[u-boot] / net / eth.c
index 42c370b7dfb56b62d297c8e2dd9f966d8af08486..ab37bc233a084c4999f169a3b3e3fe26ecbaf990 100644 (file)
--- a/net/eth.c
+++ b/net/eth.c
@@ -40,8 +40,6 @@ int cpu_eth_init(bd_t *bis) __attribute((weak, alias("__def_eth_init")));
 int board_eth_init(bd_t *bis) __attribute((weak, alias("__def_eth_init")));
 
 extern int au1x00_enet_initialize(bd_t*);
-extern int dc21x4x_initialize(bd_t*);
-extern int e1000_initialize(bd_t*);
 extern int eepro100_initialize(bd_t*);
 extern int fec_initialize(bd_t*);
 extern int mpc8220_fec_initialize(bd_t*);
@@ -193,14 +191,8 @@ int eth_initialize(bd_t *bis)
 #if defined(CONFIG_IXP4XX_NPE)
        npe_initialize(bis);
 #endif
-#ifdef CONFIG_E1000
-       e1000_initialize(bis);
-#endif
 #ifdef CONFIG_EEPRO100
        eepro100_initialize(bis);
-#endif
-#ifdef CONFIG_TULIP
-       dc21x4x_initialize(bis);
 #endif
        if (!eth_devices) {
                puts ("No ethernet found.\n");