diff options
| author | Ben Warren <biggerbadderben@gmail.com> | 2008-10-27 23:53:17 -0700 | 
|---|---|---|
| committer | Ben Warren <biggerbadderben@gmail.com> | 2008-11-09 21:38:05 -0800 | 
| commit | 25a859066b3af1070eb69f12022113c0a91bd813 (patch) | |
| tree | 9cb9b2af865c67c3ee55fb39eb4edfa26f81ed26 /net/eth.c | |
| parent | 4d03a4e20e58552cb96d61a0e8b56cdb6cc60126 (diff) | |
| download | olio-uboot-2014.01-25a859066b3af1070eb69f12022113c0a91bd813.tar.xz olio-uboot-2014.01-25a859066b3af1070eb69f12022113c0a91bd813.zip | |
Moved initialization of PPC4xx EMAC to cpu_eth_init()
Removed initialization of the driver from net/eth.c
Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
Acked-by: Stefan Roese <sr@denx.de>
Diffstat (limited to 'net/eth.c')
| -rw-r--r-- | net/eth.c | 4 | 
1 files changed, 0 insertions, 4 deletions
| @@ -41,7 +41,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 *);  #ifdef CONFIG_API  extern void (*push_packet)(volatile void *, int); @@ -153,9 +152,6 @@ int eth_initialize(bd_t *bis)  #if defined(CONFIG_DB64460) || defined(CONFIG_P3Mx)  	mv6446x_eth_initialize(bis);  #endif -#if defined(CONFIG_PPC4xx_EMAC) -	ppc_4xx_eth_initialize(bis); -#endif  	if (!eth_devices) {  		puts ("No ethernet found.\n");  		show_boot_progress (-64); |