* Patch by Thomas Frieden, 13 Nov 2002:
[platform/kernel/u-boot.git] / net / eth.c
index 3b06440..cb39433 100644 (file)
--- a/net/eth.c
+++ b/net/eth.c
@@ -35,6 +35,7 @@ extern int eepro100_initialize(bd_t*);
 extern int natsemi_initialize(bd_t*);
 extern int ns8382x_initialize(bd_t*);
 extern int dc21x4x_initialize(bd_t*);
+extern int eth_3com_initialize(bd_t*);
 extern int pcnet_initialize(bd_t*);
 extern int fec_initialize(bd_t*);
 extern int scc_initialize(bd_t*);
@@ -100,6 +101,9 @@ int eth_initialize(bd_t *bis)
 #ifdef CONFIG_TULIP
        dc21x4x_initialize(bis);
 #endif
+#ifdef CONFIG_3COM
+       eth_3com_initialize(bis);
+#endif
 #ifdef CONFIG_PCNET
        pcnet_initialize(bis);
 #endif
@@ -229,7 +233,6 @@ int eth_init(bd_t *bis)
                if (eth_current->init(eth_current, bis)) {
                        eth_current->state = ETH_STATE_ACTIVE;
 
-                       printf("%s configured\n", eth_current->name);
                        return 1;
                }