diff options
author | Ben Warren <biggerbadderben@gmail.com> | 2008-10-24 05:02:49 (GMT) |
---|---|---|
committer | Ben Warren <biggerbadderben@gmail.com> | 2008-11-10 05:38:03 (GMT) |
commit | 9eb79bd8856bcab896ed5e1f1bca159807a124dd (patch) | |
tree | 7c8e643d46ee8ef95b0f254236073e8694797aa9 /net | |
parent | a9bec96d6359ac9f90a852962bf3040cad9e0256 (diff) | |
download | u-boot-9eb79bd8856bcab896ed5e1f1bca159807a124dd.tar.xz |
Moved initialization of MPC8XX SCC 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 | 4 |
1 files changed, 0 insertions, 4 deletions
@@ -42,7 +42,6 @@ int board_eth_init(bd_t *bis) __attribute((weak, alias("__def_eth_init"))); 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*); #ifdef CONFIG_API extern void (*push_packet)(volatile void *, int); @@ -157,9 +156,6 @@ int eth_initialize(bd_t *bis) #if defined(CONFIG_4xx) && !defined(CONFIG_IOP480) && !defined(CONFIG_AP1000) ppc_4xx_eth_initialize(bis); #endif -#ifdef SCC_ENET - scc_initialize(bis); -#endif if (!eth_devices) { puts ("No ethernet found.\n"); show_boot_progress (-64); |