]> git.kernelconcepts.de Git - karo-tx-uboot.git/blobdiff - net/eth.c
* Patches by Xianghua Xiao, 15 Oct 2003:
[karo-tx-uboot.git] / net / eth.c
index f8c350103418539b2ccbb2d9d7da1964f1e2cf08..012158b7dc056c96f21e9f6b204da4a754a00d73 100644 (file)
--- a/net/eth.c
+++ b/net/eth.c
@@ -45,6 +45,7 @@ extern int ppc_4xx_eth_initialize(bd_t *);
 extern int plb2800_eth_initialize(bd_t*);
 extern int mpc5xxx_fec_initialize(bd_t*);
 extern int skge_initialize(bd_t*);
+extern int tsec_initialize(bd_t*);
 extern int au1x00_enet_initialize(bd_t*);
 
 static struct eth_device *eth_devices, *eth_current;
@@ -147,6 +148,9 @@ int eth_initialize(bd_t *bis)
 #if defined(CONFIG_SK98)
        skge_initialize(bis);
 #endif
+#ifdef CONFIG_TSEC_ENET
+       tsec_initialize(bis);
+#endif
 #if defined(CONFIG_AU1X00)
        au1x00_enet_initialize(bis);
 #endif