diff options
author | Ben Warren <biggerbadderben@gmail.com> | 2008-10-23 06:32:48 (GMT) |
---|---|---|
committer | Ben Warren <biggerbadderben@gmail.com> | 2008-11-10 05:38:03 (GMT) |
commit | 0e8454e990385a58f708c2fc26d31ac041c7a6c5 (patch) | |
tree | cfb32d9c3976df9cdd12c9c35a6ba497dfe74f04 /net | |
parent | 3456a148276d5494b53ee40242efb6462d163504 (diff) | |
download | u-boot-0e8454e990385a58f708c2fc26d31ac041c7a6c5.tar.xz |
Moved initialization of QE Ethernet controller to cpu_eth_init()
Removed initialization of the driver from net/eth.c
Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
Diffstat (limited to 'net')
-rw-r--r-- | net/eth.c | 19 |
1 files changed, 0 insertions, 19 deletions
@@ -44,7 +44,6 @@ extern int mv6436x_eth_initialize(bd_t *); extern int mv6446x_eth_initialize(bd_t *); extern int ppc_4xx_eth_initialize(bd_t *); extern int scc_initialize(bd_t*); -extern int uec_initialize(int); #ifdef CONFIG_API extern void (*push_packet)(volatile void *, int); @@ -165,24 +164,6 @@ int eth_initialize(bd_t *bis) #if defined(CONFIG_MPC8220_FEC) mpc8220_fec_initialize(bis); #endif -#if defined(CONFIG_UEC_ETH1) - uec_initialize(0); -#endif -#if defined(CONFIG_UEC_ETH2) - uec_initialize(1); -#endif -#if defined(CONFIG_UEC_ETH3) - uec_initialize(2); -#endif -#if defined(CONFIG_UEC_ETH4) - uec_initialize(3); -#endif -#if defined(CONFIG_UEC_ETH5) - uec_initialize(4); -#endif -#if defined(CONFIG_UEC_ETH6) - uec_initialize(5); -#endif if (!eth_devices) { puts ("No ethernet found.\n"); show_boot_progress (-64); |